mirror of
https://github.com/github/codeql.git
synced 2026-03-05 15:16:47 +01:00
13 lines
212 B
Plaintext
13 lines
212 B
Plaintext
/**
|
|
* @name Test for events
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Event e
|
|
where
|
|
e.getName() = "MouseUp" and
|
|
e.getDeclaringType().hasFullyQualifiedName("Events", "Control") and
|
|
not e.isFieldLike()
|
|
select e, e.getType()
|