mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
import csharp
|
|
|
|
from Element e, Class c, Method m, Parameter p
|
|
where
|
|
c.hasQualifiedName("Locations.Test") and
|
|
m.getDeclaringType() = c and
|
|
m.getAParameter() = p and
|
|
(e = c or e = m or e = p)
|
|
select e
|