mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
307 B
Plaintext
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
|