mirror of
https://github.com/github/codeql.git
synced 2026-02-25 03:13:43 +01:00
7 lines
179 B
Plaintext
7 lines
179 B
Plaintext
import csharp
|
|
|
|
from MethodCall mc, int i, Expr e
|
|
where mc.getTarget() instanceof ExtensionMethod
|
|
and (e = mc.getArgument(i) or e = mc.getQualifier() and i = -1)
|
|
select mc, i, e
|