Files
codeql/csharp/ql/test/library-tests/partial/PartialEvents.ql
2026-02-16 16:10:25 +01:00

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)