Files
codeql/python/ql/test/library-tests/PointsTo/calls/GetACall.ql
2025-11-26 12:30:31 +00:00

7 lines
187 B
Plaintext

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