Files
codeql/java/ql/integration-tests/linux-only/kotlin/custom_plugin/methods.ql
2022-08-24 16:55:11 +01:00

8 lines
156 B
Plaintext

import java
from Method m, string body
where
m.fromSource() and
if exists(m.getBody()) then body = "has body" else body = "has no body"
select m, body