Files
codeql/csharp/ql/test/library-tests/partial/MethodIsPartial.ql
2020-08-18 10:26:31 +02:00

8 lines
170 B
Plaintext

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