mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +01:00
9 lines
234 B
Plaintext
9 lines
234 B
Plaintext
import java
|
|
|
|
from ClassOrInterface c, CompanionObject cco, Field f
|
|
where
|
|
c.fromSource() and
|
|
cco = c.getCompanionObject() and
|
|
f = cco.getInstance()
|
|
select c, f, cco, f.getDeclaringType(), concat(f.getAModifier().toString(), ",")
|