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

5 lines
185 B
Plaintext

import python
from ControlFlowNode arg, FunctionObject func, int i
where arg = func.getArgumentForCall(_, i)
select arg.getLocation().getStartLine(), i, arg.toString(), func.toString()