blob: f7ff0627023a1efac1e5f7c9b17c754588cb4607 [file] [log] [blame] [edit]
/**
## Annotations
*/
annotations
: (annotation | annotationList)*
;
annotation
: "@" (annotationUseSiteTarget ":")? unescapedAnnotation
;
annotationList
: "@" (annotationUseSiteTarget ":")? "[" unescapedAnnotation+ "]"
;
annotationUseSiteTarget
: "file"
: "field"
: "property"
: "get"
: "set"
: "param"
: "setparam"
;
unescapedAnnotation
: SimpleName{"."} typeArguments? valueArguments?
;