mirror of
https://github.com/github/codeql.git
synced 2026-02-24 10:53:49 +01:00
12 lines
333 B
Plaintext
12 lines
333 B
Plaintext
/**
|
|
* @name GetLibraryAnnotationElement
|
|
*/
|
|
import default
|
|
|
|
from Class cl, Annotation ann, AnnotationType anntp, AnnotationElement anne
|
|
where cl.fromSource() and
|
|
ann = cl.getAnAnnotation() and
|
|
anntp = ann.getType() and
|
|
anne = anntp.getAnAnnotationElement()
|
|
select cl, ann, anntp.getQualifiedName(), anne.getName()
|