Files
codeql/java/ql/test/library-tests/annotation-arrays/test.ql
2022-09-20 10:15:23 +01:00

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