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

10 lines
250 B
Plaintext

import python
import Util
import semmle.python.pointsto.PointsTo
from ControlFlowNode f, ControlFlowNode x
where PointsTo::points_to(f, _, unknownValue(), _, x)
select locate(f.getLocation(), "abchr"), f.toString(), x.getLocation().getStartLine()