mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
10 lines
245 B
Plaintext
10 lines
245 B
Plaintext
import java
|
|
|
|
from Field f, Annotation ann, Expr value, Expr valueChild
|
|
where
|
|
f.getDeclaringType().fromSource() and
|
|
ann = f.getAnAnnotation() and
|
|
value = ann.getValue(_) and
|
|
valueChild.getParent() = value
|
|
select f, ann, value, valueChild
|