mirror of
https://github.com/github/codeql.git
synced 2026-02-28 04:43:42 +01:00
11 lines
297 B
Plaintext
11 lines
297 B
Plaintext
import csharp
|
|
import Common
|
|
|
|
from MyFlowSource source, Access target, string s
|
|
where
|
|
DataFlow::localFlowStep+(source, DataFlow::exprNode(target)) and
|
|
exists(MethodCall mc | mc.getTarget().getName() = "Check" and mc.getAnArgument() = target) and
|
|
s = target.toString()
|
|
select s
|
|
order by s asc
|