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

7 lines
167 B
Plaintext

import python
from ControlFlowNode call, FunctionObject func
where call = func.getACall()
select call.getLocation().getStartLine(), call.toString(), func.toString()