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

6 lines
166 B
Plaintext

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