Files
codeql/csharp/ql/test/library-tests/arguments/argumentByParameter.ql

8 lines
167 B
Plaintext

import csharp
from Call call, Expr arg, Parameter param
where
arg = call.getArgumentForParameter(param) and
call.getTarget().fromSource()
select call, arg, param