mirror of
https://github.com/github/codeql.git
synced 2026-04-11 01:54:00 +02:00
8 lines
172 B
Plaintext
8 lines
172 B
Plaintext
import csharp
|
|
|
|
private boolean isPartial(Indexer i) { if i.isPartial() then result = true else result = false }
|
|
|
|
from Indexer i
|
|
where i.fromSource()
|
|
select i, isPartial(i)
|