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

7 lines
228 B
Plaintext

import python
private import LegacyPointsTo
from CallNode call, CallableValue callable, int i
select call.getLocation().getStartLine(), call.toString(), callable.toString(), i,
callable.getArgumentForCall(call, i).toString()