Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
refs/heads/upstream/specs-M10
/
.
/
grammar
/
src
/
attributes.grm
blob: d64b00690a3302fc82deeeca881561bd62ae35b8 [
file
] [
log
] [
blame
] [
edit
]
/**
## Annotations
*/
annotations
:
annotation
*
;
annotation
:
"["
annotationEntry
+
"]"
:
annotationEntry
;
annotationEntry
:
SimpleName
{
"."
}
typeArguments
?
valueArguments
?
;