mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +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)
|