Files
codeql/python/ql/test/library-tests/PointsTo/calls/CallPointsTo.ql
2020-05-04 20:49:57 +02:00

6 lines
161 B
Plaintext

import python
from CallNode call, Value func
where call.getFunction().pointsTo(func)
select call.getLocation().getStartLine(), call.toString(), func.toString()