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