mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
8 lines
156 B
Plaintext
Executable File
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
|