Files
codeql/java/ql/test/library-tests/annotations/GetAnnotationValue.ql
2018-08-30 10:48:05 +01:00

9 lines
153 B
Plaintext

/**
* @name GetAnnotationValue
*/
import default
from Annotatable a, string key
where a.fromSource()
select a, key, a.getAnAnnotation().getValue(key)