Files
codeql/csharp/ql/test/library-tests/dispatch/GetADynamicTarget.ql
2018-08-02 17:53:23 +01:00

8 lines
221 B
Plaintext

import csharp
import semmle.code.csharp.dispatch.Dispatch
from DispatchCall call, Callable callable
where callable = call.getADynamicTarget()
and callable.fromSource()
select call, callable.getQualifiedNameWithTypes()