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

15 lines
307 B
Plaintext

/**
* @name Test for event access
*/
import csharp
from Method m, EventAccess e
where
m.hasName("OnClick") and
e.getEnclosingCallable() = m and
e.getTarget().getName() = "Click" and
e.getTarget().getDeclaringType() = m.getDeclaringType() and
e.getEnclosingStmt() instanceof IfStmt
select m, e