We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3274a9e commit 6b43c05Copy full SHA for 6b43c05
grammar.js
@@ -1020,13 +1020,15 @@ module.exports = grammar({
1020
),
1021
1022
annotation_type_body: $ => seq(
1023
- '{', repeat(choice(
+ '{',
1024
+ repeat(choice(
1025
$.annotation_type_element_declaration,
1026
$.constant_declaration,
1027
$.class_declaration,
1028
$.interface_declaration,
1029
$.enum_declaration,
- $.annotation_type_declaration
1030
+ $.annotation_type_declaration,
1031
+ ';',
1032
)),
1033
'}'
1034
0 commit comments