Files
codeql/csharp/ql/test/library-tests/partial/PartialAccessors.ql
2025-01-27 10:09:38 +01:00

8 lines
174 B
Plaintext

import csharp
private boolean isPartial(Accessor a) { if a.isPartial() then result = true else result = false }
from Accessor a
where a.fromSource()
select a, isPartial(a)