mirror of
https://github.com/github/codeql.git
synced 2026-02-12 05:01:06 +01:00
8 lines
174 B
Plaintext
8 lines
174 B
Plaintext
import csharp
|
|
|
|
private boolean isPartial(Property p) { if p.isPartial() then result = true else result = false }
|
|
|
|
from Property p
|
|
where p.fromSource()
|
|
select p, isPartial(p)
|