mirror of
https://github.com/github/codeql.git
synced 2026-02-26 20:03:51 +01:00
8 lines
221 B
Plaintext
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()
|