Files
codeql/python/ql/test/library-tests/PointsTo/general/GlobalPointsTo.ql
2018-11-19 15:15:54 +00:00

11 lines
218 B
Plaintext

import python
import interesting
from int line, ControlFlowNode f, Object o, ImportTimeScope n
where
of_interest(f, line) and
f.refersTo(o) and
f.getScope() = n
select n.toString(), line, f.toString(), o.toString()