Files
codeql/java/ql/test/library-tests/annotations/GetAnnotationValue.ql
2018-10-11 11:31:37 +02:00

10 lines
154 B
Plaintext

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