Files
codeql/python/ql/test/library-tests/PointsTo/calls/getArgumentForCall.ql
Rasmus Wriedt Larsen acb506db21 Python: Add test for getNamedArgumentForCall
and rename the one for getArgumentForCall
2020-05-04 20:50:32 +02:00

6 lines
200 B
Plaintext

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