Files
codeql/python/ql/test/library-tests/PointsTo/general/GlobalPointsTo.ql
2020-03-30 11:59:10 +02:00

10 lines
228 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()