Files
codeql/java/ql/integration-tests/linux-only/kotlin/custom_plugin/methods.ql
2022-06-24 17:33:58 +01:00

8 lines
156 B
Plaintext
Executable File

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