Files
codeql/java/ql/integration-tests/kotlin/linux/custom_plugin/methods.ql
Dilan Bhalla 14ce258807 2.19.0 upgrade
2024-09-18 14:28:42 -07: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