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

9 lines
273 B
Plaintext

import csharp
from Method m, ExplicitDelegateCreation e
where m.hasName("MainDelegateAndMethodAccesses")
and e.getEnclosingCallable() = m
and e.getDelegateType().hasName("D")
and e.getArgument().(LocalFunctionAccess).getTarget().hasName("LocalFunction")
select m, e