Files
codeql/csharp/ql/test/library-tests/expressions/DelegateCreation5.ql
2018-12-20 10:19:59 +01:00

10 lines
275 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