Files
codeql/csharp/ql/test/library-tests/assemblies/locations.ql
2018-08-02 17:53:23 +01:00

9 lines
189 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