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