mirror of
https://github.com/github/codeql.git
synced 2026-03-22 15:36:48 +01:00
9 lines
222 B
Plaintext
9 lines
222 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()
|