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