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

14 lines
301 B
Plaintext

/**
* @name Test for add event handlers
*/
import csharp
from Constructor c, RemoveEventExpr e
where
c.hasName("LoginDialog") and
e.getEnclosingCallable() = c and
e.getTarget().hasName("Click") and
e.getLValue().getQualifier().(FieldAccess).getTarget().hasName("CancelButton")
select c, e