mirror of
https://github.com/github/codeql.git
synced 2026-04-22 23:35:14 +02:00
14 lines
229 B
Plaintext
14 lines
229 B
Plaintext
/**
|
|
* @name Test for indexers
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Indexer i
|
|
where
|
|
i.getDeclaringType().hasFullyQualifiedName("Indexers", "BitArray") and
|
|
i.getType() instanceof BoolType and
|
|
i.isPublic() and
|
|
i.isReadWrite()
|
|
select i
|