Files
codeql/csharp/ql/test/library-tests/arguments/argumentByParameter.ql
2018-08-02 17:53:23 +01:00

6 lines
129 B
Plaintext

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