mirror of
https://github.com/github/codeql.git
synced 2026-01-23 03:12:58 +01:00
9 lines
228 B
Plaintext
9 lines
228 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.getFullyQualifiedNameWithTypes()
|