Files
kotlin-fork/grammar/src/attributes.grm
T
Denis Zharkov 02aafe4262 Report syntax error on unescaped annotation
Also adjust parser testData
2015-09-18 09:34:26 +03:00

29 lines
424 B
Plaintext

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