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

6 lines
186 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()