mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
10 lines
275 B
Plaintext
10 lines
275 B
Plaintext
import csharp
|
|
import semmle.code.csharp.commons.QualifiedName
|
|
import semmle.code.csharp.dispatch.Dispatch
|
|
|
|
from DispatchCall call, Callable callable
|
|
where
|
|
callable = call.getADynamicTarget() and
|
|
callable.fromSource()
|
|
select call, getFullyQualifiedNameWithTypes(callable)
|