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

10 lines
223 B
Plaintext

/**
* @name Count of accesses to constant
*/
import csharp
from MemberConstant c
where c.getDeclaringType().getNamespace().getName().matches("%Constants%")
select c, c.getAnAccess() as a, a.getLocation().getStartLine()