mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
8 lines
156 B
Plaintext
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
|