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