mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
240 B
Plaintext
9 lines
240 B
Plaintext
import java
|
|
|
|
from Method m, Class c, string res
|
|
where
|
|
c = m.getDeclaringType() and
|
|
exists(c.getCompilationUnit().getRelativePath()) and
|
|
if c.isImplicit() then res = "in compact source" else res = "NOT in compact source"
|
|
select m, res
|