mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
13 lines
204 B
Plaintext
13 lines
204 B
Plaintext
/**
|
|
* @name Test for events
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Event e
|
|
where
|
|
e.getName() = "MouseUp" and
|
|
e.getDeclaringType().hasQualifiedName("Events.Control") and
|
|
not e.isFieldLike()
|
|
select e, e.getType()
|