mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
9 lines
246 B
Plaintext
9 lines
246 B
Plaintext
import python
|
|
|
|
from ControlFlowNode f, Object o, ControlFlowNode x
|
|
|
|
where f.refersTo(o, x) and
|
|
f.getLocation().getFile().getBaseName() = "test.py"
|
|
|
|
select f.getLocation().getStartLine(), f.toString(), o.toString(), x.getLocation().getStartLine()
|