mirror of
https://github.com/github/codeql.git
synced 2026-04-05 07:08:31 +02:00
8 lines
168 B
Plaintext
8 lines
168 B
Plaintext
import csharp
|
|
|
|
private boolean isPartial(Event e) { if e.isPartial() then result = true else result = false }
|
|
|
|
from Event e
|
|
where e.fromSource()
|
|
select e, isPartial(e)
|