diff --git a/grammar.js b/grammar.js index e114453..4d67f40 100644 --- a/grammar.js +++ b/grammar.js @@ -88,6 +88,59 @@ module.exports = grammar({ [$.argument_list, $.record_pattern_body], ], + reserved: { + global: $ => [ + 'abstract', + 'assert', + 'boolean', + 'break', + 'byte', + 'case', + 'catch', + 'char', + 'class', + 'continue', + 'default', + 'do', + 'double', + 'else', + 'enum', + 'extends', + 'final', + 'finally', + 'float', + 'for', + 'if', + 'implements', + 'import', + 'instanceof', + 'int', + 'interface', + 'long', + 'native', + 'new', + 'package', + 'private', + 'protected', + 'public', + 'return', + 'short', + 'static', + 'strictfp', + 'super', + 'switch', + 'synchronized', + 'this', + 'throw', + 'throws', + 'transient', + 'try', + 'void', + 'volatile', + 'while', + ], + }, + word: $ => $.identifier, rules: { @@ -256,7 +309,6 @@ module.exports = grammar({ assignment_expression: $ => prec.right(PREC.ASSIGN, seq( field('left', choice( $.identifier, - $._reserved_identifier, $.field_access, $.array_access, )), @@ -301,7 +353,7 @@ module.exports = grammar({ choice( seq( field('right', $._type), - optional(field('name', choice($.identifier, $._reserved_identifier))), + optional(field('name', $.identifier)), ), field('pattern', $.record_pattern), ), @@ -309,7 +361,9 @@ module.exports = grammar({ lambda_expression: $ => seq( field('parameters', choice( - $.identifier, $.formal_parameters, $.inferred_parameters, $._reserved_identifier, + $.identifier, + $.formal_parameters, + $.inferred_parameters, )), '->', field('body', choice($.expression, $.block)), @@ -317,7 +371,7 @@ module.exports = grammar({ inferred_parameters: $ => seq( '(', - commaSep1(choice($.identifier, $._reserved_identifier)), + commaSep1($.identifier), ')', ), @@ -355,7 +409,6 @@ module.exports = grammar({ $.class_literal, $.this, $.identifier, - $._reserved_identifier, $.parenthesized_expression, $.object_creation_expression, $.field_access, @@ -415,7 +468,7 @@ module.exports = grammar({ $.super, )), '.', - field('field', choice($.identifier, $._reserved_identifier, $.this)), + field('field', choice($.identifier, $.this)), ), template_expression: $ => seq( @@ -433,7 +486,7 @@ module.exports = grammar({ method_invocation: $ => seq( choice( - field('name', choice($.identifier, $._reserved_identifier)), + field('name', $.identifier), seq( field('object', choice($.primary_expression, $.super)), '.', @@ -442,7 +495,7 @@ module.exports = grammar({ '.', )), field('type_arguments', optional($.type_arguments)), - field('name', choice($.identifier, $._reserved_identifier)), + field('name', $.identifier), ), ), field('arguments', $.argument_list), @@ -519,14 +572,14 @@ module.exports = grammar({ $.type_pattern, $.record_pattern, ), - type_pattern: $ => seq($._unannotated_type, choice($.identifier, $._reserved_identifier)), - record_pattern: $ => seq(choice($.identifier, $._reserved_identifier, $.generic_type), $.record_pattern_body), + type_pattern: $ => seq($._unannotated_type, $.identifier), + record_pattern: $ => seq(choice($.identifier, $.generic_type), $.record_pattern_body), record_pattern_body: $ => seq('(', commaSep(choice($.record_pattern_component, $.record_pattern)), ')'), record_pattern_component: $ => choice( $.underscore_pattern, seq( $._unannotated_type, - choice($.identifier, $._reserved_identifier), + $.identifier, ), ), @@ -999,11 +1052,7 @@ module.exports = grammar({ ';', ), - _name: $ => choice( - $.identifier, - $._reserved_identifier, - $.scoped_identifier, - ), + _name: $ => choice($.identifier, $.scoped_identifier), scoped_identifier: $ => seq( field('scope', $._name), @@ -1052,7 +1101,7 @@ module.exports = grammar({ annotation_type_element_declaration: $ => seq( optional($.modifiers), field('type', $._unannotated_type), - field('name', choice($.identifier, $._reserved_identifier)), + field('name', $.identifier), '(', ')', field('dimensions', optional($.dimensions)), optional($._default_value), @@ -1111,7 +1160,10 @@ module.exports = grammar({ ), _variable_declarator_id: $ => seq( - field('name', choice($.identifier, $._reserved_identifier, $.underscore_pattern)), + field('name', choice( + $.identifier, + $.underscore_pattern, + )), field('dimensions', optional($.dimensions)), ), @@ -1206,7 +1258,7 @@ module.exports = grammar({ ), _method_declarator: $ => seq( - field('name', choice($.identifier, $._reserved_identifier)), + field('name', $.identifier), field('parameters', $.formal_parameters), field('dimensions', optional($.dimensions)), ), @@ -1266,18 +1318,6 @@ module.exports = grammar({ field('body', $.block), ), - _reserved_identifier: $ => prec(-3, alias( - choice( - 'open', - 'module', - 'record', - 'with', - 'yield', - 'sealed', - ), - $.identifier, - )), - this: _ => 'this', super: _ => 'super', diff --git a/src/grammar.json b/src/grammar.json index 1a527f6..6393dec 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1611,10 +1611,6 @@ "type": "SYMBOL", "name": "identifier" }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, { "type": "SYMBOL", "name": "field_access" @@ -2377,17 +2373,8 @@ "type": "FIELD", "name": "name", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" } }, { @@ -2430,10 +2417,6 @@ { "type": "SYMBOL", "name": "inferred_parameters" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" } ] } @@ -2472,17 +2455,8 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" }, { "type": "REPEAT", @@ -2494,17 +2468,8 @@ "value": "," }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" } ] } @@ -2743,10 +2708,6 @@ "type": "SYMBOL", "name": "identifier" }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, { "type": "SYMBOL", "name": "parenthesized_expression" @@ -3090,10 +3051,6 @@ "type": "SYMBOL", "name": "identifier" }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, { "type": "SYMBOL", "name": "this" @@ -3167,17 +3124,8 @@ "type": "FIELD", "name": "name", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" } }, { @@ -3245,17 +3193,8 @@ "type": "FIELD", "name": "name", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" } } ] @@ -3723,17 +3662,8 @@ "name": "_unannotated_type" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" } ] }, @@ -3747,10 +3677,6 @@ "type": "SYMBOL", "name": "identifier" }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, { "type": "SYMBOL", "name": "generic_type" @@ -3842,17 +3768,8 @@ "name": "_unannotated_type" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" } ] } @@ -6305,10 +6222,6 @@ "type": "SYMBOL", "name": "identifier" }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, { "type": "SYMBOL", "name": "scoped_identifier" @@ -6563,17 +6476,8 @@ "type": "FIELD", "name": "name", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" } }, { @@ -6895,10 +6799,6 @@ "type": "SYMBOL", "name": "identifier" }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, { "type": "SYMBOL", "name": "underscore_pattern" @@ -7284,17 +7184,8 @@ "type": "FIELD", "name": "name", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" } }, { @@ -7654,44 +7545,6 @@ } ] }, - "_reserved_identifier": { - "type": "PREC", - "value": -3, - "content": { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "open" - }, - { - "type": "STRING", - "value": "module" - }, - { - "type": "STRING", - "value": "record" - }, - { - "type": "STRING", - "value": "with" - }, - { - "type": "STRING", - "value": "yield" - }, - { - "type": "STRING", - "value": "sealed" - } - ] - }, - "named": true, - "value": "identifier" - } - }, "this": { "type": "STRING", "value": "this" @@ -7836,5 +7689,201 @@ "_simple_type", "_unannotated_type", "module_directive" - ] + ], + "reserved": { + "global": [ + { + "type": "STRING", + "value": "abstract" + }, + { + "type": "STRING", + "value": "assert" + }, + { + "type": "STRING", + "value": "boolean" + }, + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": "byte" + }, + { + "type": "STRING", + "value": "case" + }, + { + "type": "STRING", + "value": "catch" + }, + { + "type": "STRING", + "value": "char" + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": "do" + }, + { + "type": "STRING", + "value": "double" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "enum" + }, + { + "type": "STRING", + "value": "extends" + }, + { + "type": "STRING", + "value": "final" + }, + { + "type": "STRING", + "value": "finally" + }, + { + "type": "STRING", + "value": "float" + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "implements" + }, + { + "type": "STRING", + "value": "import" + }, + { + "type": "STRING", + "value": "instanceof" + }, + { + "type": "STRING", + "value": "int" + }, + { + "type": "STRING", + "value": "interface" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "native" + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "package" + }, + { + "type": "STRING", + "value": "private" + }, + { + "type": "STRING", + "value": "protected" + }, + { + "type": "STRING", + "value": "public" + }, + { + "type": "STRING", + "value": "return" + }, + { + "type": "STRING", + "value": "short" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "strictfp" + }, + { + "type": "STRING", + "value": "super" + }, + { + "type": "STRING", + "value": "switch" + }, + { + "type": "STRING", + "value": "synchronized" + }, + { + "type": "STRING", + "value": "this" + }, + { + "type": "STRING", + "value": "throw" + }, + { + "type": "STRING", + "value": "throws" + }, + { + "type": "STRING", + "value": "transient" + }, + { + "type": "STRING", + "value": "try" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "volatile" + }, + { + "type": "STRING", + "value": "while" + } + ] + } } diff --git a/src/parser.c b/src/parser.c index 7cde464..a3548ae 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,19 +1,22 @@ +/* Automatically generated by tree-sitter v0.25.0 (ebb9df536c1fa3f7cc733cdc4c749d0b9a1bc096) */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 1378 -#define LARGE_STATE_COUNT 405 -#define SYMBOL_COUNT 320 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 1355 +#define LARGE_STATE_COUNT 395 +#define SYMBOL_COUNT 319 #define ALIAS_COUNT 1 #define TOKEN_COUNT 138 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 40 #define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 208 +#define MAX_RESERVED_WORD_SET_SIZE 48 +#define PRODUCTION_ID_COUNT 207 enum ts_symbol_identifiers { sym_identifier = 1, @@ -296,46 +299,45 @@ enum ts_symbol_identifiers { sym_local_variable_declaration = 278, sym_method_declaration = 279, sym_compact_constructor_declaration = 280, - sym__reserved_identifier = 281, - aux_sym_program_repeat1 = 282, - aux_sym__string_literal_repeat1 = 283, - aux_sym__multiline_string_literal_repeat1 = 284, - aux_sym_cast_expression_repeat1 = 285, - aux_sym_inferred_parameters_repeat1 = 286, - aux_sym_array_creation_expression_repeat1 = 287, - aux_sym_array_creation_expression_repeat2 = 288, - aux_sym_argument_list_repeat1 = 289, - aux_sym_type_arguments_repeat1 = 290, - aux_sym_dimensions_repeat1 = 291, - aux_sym_switch_block_repeat1 = 292, - aux_sym_switch_block_repeat2 = 293, - aux_sym_switch_block_statement_group_repeat1 = 294, - aux_sym_switch_block_statement_group_repeat2 = 295, - aux_sym_record_pattern_body_repeat1 = 296, - aux_sym_try_statement_repeat1 = 297, - aux_sym_catch_type_repeat1 = 298, - aux_sym_resource_specification_repeat1 = 299, - aux_sym_for_statement_repeat1 = 300, - aux_sym_for_statement_repeat2 = 301, - aux_sym_annotation_argument_list_repeat1 = 302, - aux_sym_element_value_array_initializer_repeat1 = 303, - aux_sym_module_body_repeat1 = 304, - aux_sym_requires_module_directive_repeat1 = 305, - aux_sym_exports_module_directive_repeat1 = 306, - aux_sym_provides_module_directive_repeat1 = 307, - aux_sym_enum_body_repeat1 = 308, - aux_sym_enum_body_declarations_repeat1 = 309, - aux_sym_modifiers_repeat1 = 310, - aux_sym_type_parameters_repeat1 = 311, - aux_sym_type_bound_repeat1 = 312, - aux_sym_type_list_repeat1 = 313, - aux_sym_annotation_type_body_repeat1 = 314, - aux_sym_interface_body_repeat1 = 315, - aux_sym__variable_declarator_list_repeat1 = 316, - aux_sym_array_initializer_repeat1 = 317, - aux_sym_formal_parameters_repeat1 = 318, - aux_sym_receiver_parameter_repeat1 = 319, - alias_sym_type_identifier = 320, + aux_sym_program_repeat1 = 281, + aux_sym__string_literal_repeat1 = 282, + aux_sym__multiline_string_literal_repeat1 = 283, + aux_sym_cast_expression_repeat1 = 284, + aux_sym_inferred_parameters_repeat1 = 285, + aux_sym_array_creation_expression_repeat1 = 286, + aux_sym_array_creation_expression_repeat2 = 287, + aux_sym_argument_list_repeat1 = 288, + aux_sym_type_arguments_repeat1 = 289, + aux_sym_dimensions_repeat1 = 290, + aux_sym_switch_block_repeat1 = 291, + aux_sym_switch_block_repeat2 = 292, + aux_sym_switch_block_statement_group_repeat1 = 293, + aux_sym_switch_block_statement_group_repeat2 = 294, + aux_sym_record_pattern_body_repeat1 = 295, + aux_sym_try_statement_repeat1 = 296, + aux_sym_catch_type_repeat1 = 297, + aux_sym_resource_specification_repeat1 = 298, + aux_sym_for_statement_repeat1 = 299, + aux_sym_for_statement_repeat2 = 300, + aux_sym_annotation_argument_list_repeat1 = 301, + aux_sym_element_value_array_initializer_repeat1 = 302, + aux_sym_module_body_repeat1 = 303, + aux_sym_requires_module_directive_repeat1 = 304, + aux_sym_exports_module_directive_repeat1 = 305, + aux_sym_provides_module_directive_repeat1 = 306, + aux_sym_enum_body_repeat1 = 307, + aux_sym_enum_body_declarations_repeat1 = 308, + aux_sym_modifiers_repeat1 = 309, + aux_sym_type_parameters_repeat1 = 310, + aux_sym_type_bound_repeat1 = 311, + aux_sym_type_list_repeat1 = 312, + aux_sym_annotation_type_body_repeat1 = 313, + aux_sym_interface_body_repeat1 = 314, + aux_sym__variable_declarator_list_repeat1 = 315, + aux_sym_array_initializer_repeat1 = 316, + aux_sym_formal_parameters_repeat1 = 317, + aux_sym_receiver_parameter_repeat1 = 318, + alias_sym_type_identifier = 319, }; static const char * const ts_symbol_names[] = { @@ -620,7 +622,6 @@ static const char * const ts_symbol_names[] = { [sym_local_variable_declaration] = "local_variable_declaration", [sym_method_declaration] = "method_declaration", [sym_compact_constructor_declaration] = "compact_constructor_declaration", - [sym__reserved_identifier] = "_reserved_identifier", [aux_sym_program_repeat1] = "program_repeat1", [aux_sym__string_literal_repeat1] = "_string_literal_repeat1", [aux_sym__multiline_string_literal_repeat1] = "_multiline_string_literal_repeat1", @@ -944,7 +945,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_local_variable_declaration] = sym_local_variable_declaration, [sym_method_declaration] = sym_method_declaration, [sym_compact_constructor_declaration] = sym_compact_constructor_declaration, - [sym__reserved_identifier] = sym__reserved_identifier, [aux_sym_program_repeat1] = aux_sym_program_repeat1, [aux_sym__string_literal_repeat1] = aux_sym__string_literal_repeat1, [aux_sym__multiline_string_literal_repeat1] = aux_sym__multiline_string_literal_repeat1, @@ -2119,10 +2119,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__reserved_identifier] = { - .visible = false, - .named = true, - }, [aux_sym_program_repeat1] = { .visible = false, .named = false, @@ -2369,206 +2365,206 @@ static const char * const ts_field_names[] = { }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [3] = {.index = 0, .length = 3}, - [4] = {.index = 3, .length = 2}, - [5] = {.index = 5, .length = 1}, - [6] = {.index = 6, .length = 2}, - [7] = {.index = 8, .length = 1}, - [8] = {.index = 9, .length = 2}, - [9] = {.index = 11, .length = 1}, - [10] = {.index = 12, .length = 2}, - [11] = {.index = 14, .length = 4}, - [12] = {.index = 18, .length = 5}, - [13] = {.index = 23, .length = 6}, - [14] = {.index = 29, .length = 3}, - [16] = {.index = 32, .length = 2}, - [17] = {.index = 34, .length = 2}, - [18] = {.index = 32, .length = 2}, - [19] = {.index = 34, .length = 2}, - [20] = {.index = 36, .length = 2}, - [21] = {.index = 38, .length = 2}, - [22] = {.index = 40, .length = 1}, - [23] = {.index = 41, .length = 1}, - [24] = {.index = 42, .length = 2}, - [25] = {.index = 44, .length = 2}, - [26] = {.index = 46, .length = 2}, - [27] = {.index = 48, .length = 2}, - [28] = {.index = 50, .length = 3}, - [29] = {.index = 53, .length = 2}, - [31] = {.index = 55, .length = 2}, - [32] = {.index = 57, .length = 2}, - [33] = {.index = 59, .length = 2}, - [34] = {.index = 61, .length = 3}, - [35] = {.index = 64, .length = 5}, - [36] = {.index = 69, .length = 6}, - [37] = {.index = 75, .length = 5}, - [38] = {.index = 80, .length = 2}, - [39] = {.index = 82, .length = 2}, - [40] = {.index = 84, .length = 2}, - [41] = {.index = 86, .length = 2}, - [43] = {.index = 88, .length = 3}, - [44] = {.index = 91, .length = 2}, - [45] = {.index = 93, .length = 1}, - [46] = {.index = 94, .length = 2}, - [47] = {.index = 96, .length = 3}, - [48] = {.index = 99, .length = 3}, - [49] = {.index = 96, .length = 3}, - [50] = {.index = 99, .length = 3}, + [2] = {.index = 0, .length = 3}, + [3] = {.index = 3, .length = 2}, + [4] = {.index = 5, .length = 1}, + [5] = {.index = 6, .length = 2}, + [6] = {.index = 8, .length = 1}, + [7] = {.index = 9, .length = 2}, + [8] = {.index = 11, .length = 1}, + [9] = {.index = 12, .length = 2}, + [10] = {.index = 14, .length = 4}, + [11] = {.index = 18, .length = 5}, + [12] = {.index = 23, .length = 6}, + [13] = {.index = 29, .length = 3}, + [15] = {.index = 32, .length = 2}, + [16] = {.index = 34, .length = 2}, + [17] = {.index = 32, .length = 2}, + [18] = {.index = 34, .length = 2}, + [19] = {.index = 36, .length = 2}, + [20] = {.index = 38, .length = 2}, + [21] = {.index = 40, .length = 1}, + [22] = {.index = 41, .length = 1}, + [23] = {.index = 42, .length = 2}, + [24] = {.index = 44, .length = 2}, + [25] = {.index = 46, .length = 2}, + [26] = {.index = 48, .length = 2}, + [27] = {.index = 50, .length = 3}, + [28] = {.index = 53, .length = 2}, + [30] = {.index = 55, .length = 2}, + [31] = {.index = 57, .length = 2}, + [32] = {.index = 59, .length = 2}, + [33] = {.index = 61, .length = 3}, + [34] = {.index = 64, .length = 5}, + [35] = {.index = 69, .length = 6}, + [36] = {.index = 75, .length = 5}, + [37] = {.index = 80, .length = 2}, + [38] = {.index = 82, .length = 2}, + [39] = {.index = 84, .length = 2}, + [40] = {.index = 86, .length = 2}, + [42] = {.index = 88, .length = 3}, + [43] = {.index = 91, .length = 2}, + [44] = {.index = 93, .length = 1}, + [45] = {.index = 94, .length = 2}, + [46] = {.index = 96, .length = 3}, + [47] = {.index = 99, .length = 3}, + [48] = {.index = 96, .length = 3}, + [49] = {.index = 99, .length = 3}, + [50] = {.index = 102, .length = 3}, [51] = {.index = 102, .length = 3}, - [52] = {.index = 102, .length = 3}, - [53] = {.index = 105, .length = 2}, - [54] = {.index = 107, .length = 2}, - [55] = {.index = 105, .length = 2}, - [56] = {.index = 107, .length = 2}, - [57] = {.index = 109, .length = 3}, - [58] = {.index = 112, .length = 3}, - [59] = {.index = 115, .length = 3}, - [60] = {.index = 118, .length = 3}, - [61] = {.index = 121, .length = 2}, - [62] = {.index = 123, .length = 2}, - [63] = {.index = 125, .length = 3}, - [64] = {.index = 128, .length = 2}, - [65] = {.index = 130, .length = 3}, - [67] = {.index = 133, .length = 2}, - [68] = {.index = 135, .length = 2}, - [69] = {.index = 137, .length = 3}, - [70] = {.index = 140, .length = 2}, - [71] = {.index = 142, .length = 2}, - [72] = {.index = 144, .length = 5}, - [73] = {.index = 149, .length = 3}, - [74] = {.index = 152, .length = 1}, - [75] = {.index = 153, .length = 2}, - [76] = {.index = 155, .length = 3}, - [78] = {.index = 158, .length = 3}, + [52] = {.index = 105, .length = 2}, + [53] = {.index = 107, .length = 2}, + [54] = {.index = 105, .length = 2}, + [55] = {.index = 107, .length = 2}, + [56] = {.index = 109, .length = 3}, + [57] = {.index = 112, .length = 3}, + [58] = {.index = 115, .length = 3}, + [59] = {.index = 118, .length = 3}, + [60] = {.index = 121, .length = 2}, + [61] = {.index = 123, .length = 2}, + [62] = {.index = 125, .length = 3}, + [63] = {.index = 128, .length = 2}, + [64] = {.index = 130, .length = 3}, + [66] = {.index = 133, .length = 2}, + [67] = {.index = 135, .length = 2}, + [68] = {.index = 137, .length = 3}, + [69] = {.index = 140, .length = 2}, + [70] = {.index = 142, .length = 2}, + [71] = {.index = 144, .length = 5}, + [72] = {.index = 149, .length = 3}, + [73] = {.index = 152, .length = 1}, + [74] = {.index = 153, .length = 2}, + [75] = {.index = 155, .length = 3}, + [77] = {.index = 158, .length = 3}, + [78] = {.index = 161, .length = 3}, [79] = {.index = 161, .length = 3}, - [80] = {.index = 161, .length = 3}, - [81] = {.index = 164, .length = 3}, - [82] = {.index = 167, .length = 3}, - [83] = {.index = 164, .length = 3}, - [84] = {.index = 167, .length = 3}, + [80] = {.index = 164, .length = 3}, + [81] = {.index = 167, .length = 3}, + [82] = {.index = 164, .length = 3}, + [83] = {.index = 167, .length = 3}, + [84] = {.index = 170, .length = 3}, [85] = {.index = 170, .length = 3}, - [86] = {.index = 170, .length = 3}, - [87] = {.index = 173, .length = 2}, - [88] = {.index = 175, .length = 4}, - [89] = {.index = 179, .length = 4}, - [90] = {.index = 183, .length = 4}, - [91] = {.index = 187, .length = 4}, - [92] = {.index = 191, .length = 4}, - [93] = {.index = 195, .length = 4}, - [94] = {.index = 199, .length = 4}, - [95] = {.index = 203, .length = 2}, - [96] = {.index = 205, .length = 3}, - [97] = {.index = 208, .length = 1}, - [98] = {.index = 209, .length = 2}, - [99] = {.index = 211, .length = 1}, - [100] = {.index = 212, .length = 4}, - [101] = {.index = 216, .length = 4}, - [102] = {.index = 220, .length = 3}, - [103] = {.index = 223, .length = 3}, - [104] = {.index = 226, .length = 2}, - [105] = {.index = 228, .length = 4}, - [106] = {.index = 232, .length = 3}, - [107] = {.index = 235, .length = 3}, - [108] = {.index = 238, .length = 3}, - [109] = {.index = 241, .length = 3}, - [110] = {.index = 244, .length = 3}, - [111] = {.index = 247, .length = 3}, - [112] = {.index = 250, .length = 3}, - [113] = {.index = 253, .length = 2}, - [114] = {.index = 255, .length = 2}, + [86] = {.index = 173, .length = 2}, + [87] = {.index = 175, .length = 4}, + [88] = {.index = 179, .length = 4}, + [89] = {.index = 183, .length = 4}, + [90] = {.index = 187, .length = 4}, + [91] = {.index = 191, .length = 4}, + [92] = {.index = 195, .length = 4}, + [93] = {.index = 199, .length = 4}, + [94] = {.index = 203, .length = 2}, + [95] = {.index = 205, .length = 3}, + [96] = {.index = 208, .length = 1}, + [97] = {.index = 209, .length = 2}, + [98] = {.index = 211, .length = 1}, + [99] = {.index = 212, .length = 4}, + [100] = {.index = 216, .length = 4}, + [101] = {.index = 220, .length = 3}, + [102] = {.index = 223, .length = 3}, + [103] = {.index = 226, .length = 2}, + [104] = {.index = 228, .length = 4}, + [105] = {.index = 232, .length = 3}, + [106] = {.index = 235, .length = 3}, + [107] = {.index = 238, .length = 3}, + [108] = {.index = 241, .length = 3}, + [109] = {.index = 244, .length = 3}, + [110] = {.index = 247, .length = 3}, + [111] = {.index = 250, .length = 3}, + [112] = {.index = 253, .length = 2}, + [113] = {.index = 255, .length = 2}, + [114] = {.index = 257, .length = 3}, [115] = {.index = 257, .length = 3}, - [116] = {.index = 257, .length = 3}, - [117] = {.index = 260, .length = 4}, - [118] = {.index = 264, .length = 3}, - [119] = {.index = 267, .length = 4}, - [120] = {.index = 271, .length = 5}, - [121] = {.index = 276, .length = 5}, - [122] = {.index = 281, .length = 5}, - [123] = {.index = 286, .length = 5}, - [124] = {.index = 291, .length = 4}, - [125] = {.index = 295, .length = 2}, - [126] = {.index = 297, .length = 1}, - [127] = {.index = 298, .length = 2}, - [128] = {.index = 300, .length = 2}, - [129] = {.index = 302, .length = 1}, - [130] = {.index = 303, .length = 2}, - [131] = {.index = 305, .length = 1}, - [132] = {.index = 306, .length = 3}, - [133] = {.index = 309, .length = 5}, - [134] = {.index = 314, .length = 4}, - [135] = {.index = 318, .length = 3}, - [136] = {.index = 321, .length = 4}, - [137] = {.index = 325, .length = 4}, - [138] = {.index = 329, .length = 4}, - [139] = {.index = 333, .length = 4}, - [140] = {.index = 337, .length = 4}, - [141] = {.index = 341, .length = 4}, - [142] = {.index = 345, .length = 4}, - [143] = {.index = 349, .length = 4}, - [144] = {.index = 353, .length = 3}, - [145] = {.index = 356, .length = 3}, - [146] = {.index = 359, .length = 4}, - [147] = {.index = 363, .length = 6}, - [148] = {.index = 369, .length = 4}, - [149] = {.index = 373, .length = 1}, - [150] = {.index = 374, .length = 2}, - [151] = {.index = 376, .length = 2}, - [152] = {.index = 378, .length = 1}, - [153] = {.index = 379, .length = 2}, - [154] = {.index = 381, .length = 2}, - [155] = {.index = 383, .length = 2}, - [156] = {.index = 385, .length = 3}, - [157] = {.index = 388, .length = 3}, - [158] = {.index = 391, .length = 2}, - [159] = {.index = 393, .length = 3}, - [160] = {.index = 396, .length = 4}, - [161] = {.index = 400, .length = 5}, - [162] = {.index = 405, .length = 5}, - [163] = {.index = 410, .length = 5}, - [164] = {.index = 415, .length = 5}, - [165] = {.index = 420, .length = 5}, - [166] = {.index = 425, .length = 4}, - [167] = {.index = 429, .length = 2}, - [168] = {.index = 431, .length = 3}, - [169] = {.index = 434, .length = 3}, - [170] = {.index = 437, .length = 3}, - [171] = {.index = 440, .length = 3}, - [172] = {.index = 443, .length = 3}, - [173] = {.index = 446, .length = 5}, - [174] = {.index = 451, .length = 4}, - [175] = {.index = 455, .length = 4}, - [176] = {.index = 459, .length = 2}, - [177] = {.index = 461, .length = 1}, - [178] = {.index = 462, .length = 2}, - [179] = {.index = 464, .length = 6}, - [180] = {.index = 470, .length = 3}, - [181] = {.index = 473, .length = 4}, - [182] = {.index = 477, .length = 4}, - [183] = {.index = 481, .length = 4}, - [184] = {.index = 485, .length = 4}, - [185] = {.index = 489, .length = 4}, - [186] = {.index = 493, .length = 5}, - [187] = {.index = 498, .length = 5}, - [188] = {.index = 503, .length = 1}, - [189] = {.index = 504, .length = 3}, - [190] = {.index = 507, .length = 2}, - [191] = {.index = 509, .length = 1}, - [192] = {.index = 510, .length = 2}, - [193] = {.index = 512, .length = 2}, - [194] = {.index = 514, .length = 2}, - [195] = {.index = 516, .length = 1}, - [196] = {.index = 517, .length = 3}, - [197] = {.index = 520, .length = 3}, - [198] = {.index = 523, .length = 3}, - [199] = {.index = 526, .length = 5}, - [200] = {.index = 531, .length = 5}, - [201] = {.index = 536, .length = 5}, - [202] = {.index = 541, .length = 3}, - [203] = {.index = 544, .length = 3}, - [204] = {.index = 547, .length = 4}, - [205] = {.index = 551, .length = 4}, - [206] = {.index = 555, .length = 6}, - [207] = {.index = 561, .length = 4}, + [116] = {.index = 260, .length = 4}, + [117] = {.index = 264, .length = 3}, + [118] = {.index = 267, .length = 4}, + [119] = {.index = 271, .length = 5}, + [120] = {.index = 276, .length = 5}, + [121] = {.index = 281, .length = 5}, + [122] = {.index = 286, .length = 5}, + [123] = {.index = 291, .length = 4}, + [124] = {.index = 295, .length = 2}, + [125] = {.index = 297, .length = 1}, + [126] = {.index = 298, .length = 2}, + [127] = {.index = 300, .length = 2}, + [128] = {.index = 302, .length = 1}, + [129] = {.index = 303, .length = 2}, + [130] = {.index = 305, .length = 1}, + [131] = {.index = 306, .length = 3}, + [132] = {.index = 309, .length = 5}, + [133] = {.index = 314, .length = 4}, + [134] = {.index = 318, .length = 3}, + [135] = {.index = 321, .length = 4}, + [136] = {.index = 325, .length = 4}, + [137] = {.index = 329, .length = 4}, + [138] = {.index = 333, .length = 4}, + [139] = {.index = 337, .length = 4}, + [140] = {.index = 341, .length = 4}, + [141] = {.index = 345, .length = 4}, + [142] = {.index = 349, .length = 4}, + [143] = {.index = 353, .length = 3}, + [144] = {.index = 356, .length = 3}, + [145] = {.index = 359, .length = 4}, + [146] = {.index = 363, .length = 6}, + [147] = {.index = 369, .length = 4}, + [148] = {.index = 373, .length = 1}, + [149] = {.index = 374, .length = 2}, + [150] = {.index = 376, .length = 2}, + [151] = {.index = 378, .length = 1}, + [152] = {.index = 379, .length = 2}, + [153] = {.index = 381, .length = 2}, + [154] = {.index = 383, .length = 2}, + [155] = {.index = 385, .length = 3}, + [156] = {.index = 388, .length = 3}, + [157] = {.index = 391, .length = 2}, + [158] = {.index = 393, .length = 3}, + [159] = {.index = 396, .length = 4}, + [160] = {.index = 400, .length = 5}, + [161] = {.index = 405, .length = 5}, + [162] = {.index = 410, .length = 5}, + [163] = {.index = 415, .length = 5}, + [164] = {.index = 420, .length = 5}, + [165] = {.index = 425, .length = 4}, + [166] = {.index = 429, .length = 2}, + [167] = {.index = 431, .length = 3}, + [168] = {.index = 434, .length = 3}, + [169] = {.index = 437, .length = 3}, + [170] = {.index = 440, .length = 3}, + [171] = {.index = 443, .length = 3}, + [172] = {.index = 446, .length = 5}, + [173] = {.index = 451, .length = 4}, + [174] = {.index = 455, .length = 4}, + [175] = {.index = 459, .length = 2}, + [176] = {.index = 461, .length = 1}, + [177] = {.index = 462, .length = 2}, + [178] = {.index = 464, .length = 6}, + [179] = {.index = 470, .length = 3}, + [180] = {.index = 473, .length = 4}, + [181] = {.index = 477, .length = 4}, + [182] = {.index = 481, .length = 4}, + [183] = {.index = 485, .length = 4}, + [184] = {.index = 489, .length = 4}, + [185] = {.index = 493, .length = 5}, + [186] = {.index = 498, .length = 5}, + [187] = {.index = 503, .length = 1}, + [188] = {.index = 504, .length = 3}, + [189] = {.index = 507, .length = 2}, + [190] = {.index = 509, .length = 1}, + [191] = {.index = 510, .length = 2}, + [192] = {.index = 512, .length = 2}, + [193] = {.index = 514, .length = 2}, + [194] = {.index = 516, .length = 1}, + [195] = {.index = 517, .length = 3}, + [196] = {.index = 520, .length = 3}, + [197] = {.index = 523, .length = 3}, + [198] = {.index = 526, .length = 5}, + [199] = {.index = 531, .length = 5}, + [200] = {.index = 536, .length = 5}, + [201] = {.index = 541, .length = 3}, + [202] = {.index = 544, .length = 3}, + [203] = {.index = 547, .length = 4}, + [204] = {.index = 551, .length = 4}, + [205] = {.index = 555, .length = 6}, + [206] = {.index = 561, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3330,62 +3326,59 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { - [0] = sym_identifier, - }, - [2] = { [0] = alias_sym_type_identifier, }, - [15] = { + [14] = { [1] = alias_sym_type_identifier, }, - [18] = { + [17] = { [1] = alias_sym_type_identifier, }, - [19] = { + [18] = { [1] = alias_sym_type_identifier, }, - [30] = { + [29] = { [0] = alias_sym_type_identifier, [2] = alias_sym_type_identifier, }, - [42] = { + [41] = { [2] = alias_sym_type_identifier, }, - [49] = { + [48] = { [1] = alias_sym_type_identifier, }, - [50] = { + [49] = { [1] = alias_sym_type_identifier, }, - [52] = { + [51] = { [2] = alias_sym_type_identifier, }, - [55] = { + [54] = { [2] = alias_sym_type_identifier, }, - [56] = { + [55] = { [2] = alias_sym_type_identifier, }, - [66] = { + [65] = { [0] = alias_sym_type_identifier, [3] = alias_sym_type_identifier, }, - [77] = { + [76] = { [3] = alias_sym_type_identifier, }, - [80] = { + [79] = { [3] = alias_sym_type_identifier, }, - [83] = { + [82] = { [2] = alias_sym_type_identifier, }, - [84] = { + [83] = { [2] = alias_sym_type_identifier, }, - [86] = { + [85] = { [3] = alias_sym_type_identifier, }, - [116] = { + [115] = { [4] = alias_sym_type_identifier, }, }; @@ -3408,8 +3401,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10] = 10, [11] = 11, [12] = 12, - [13] = 9, - [14] = 8, + [13] = 13, + [14] = 14, [15] = 15, [16] = 16, [17] = 17, @@ -3430,57 +3423,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [32] = 32, [33] = 33, [34] = 34, - [35] = 35, + [35] = 13, [36] = 36, [37] = 37, [38] = 38, - [39] = 15, + [39] = 39, [40] = 40, [41] = 41, [42] = 42, [43] = 43, - [44] = 44, - [45] = 45, - [46] = 16, - [47] = 47, - [48] = 21, - [49] = 22, - [50] = 47, - [51] = 18, - [52] = 19, - [53] = 20, + [44] = 14, + [45] = 17, + [46] = 25, + [47] = 15, + [48] = 16, + [49] = 18, + [50] = 19, + [51] = 20, + [52] = 21, + [53] = 22, [54] = 23, - [55] = 25, + [55] = 24, [56] = 26, [57] = 27, [58] = 28, - [59] = 29, + [59] = 59, [60] = 30, [61] = 31, [62] = 32, [63] = 33, [64] = 34, - [65] = 35, + [65] = 13, [66] = 36, [67] = 37, [68] = 38, - [69] = 15, + [69] = 39, [70] = 40, [71] = 41, [72] = 42, [73] = 43, - [74] = 44, - [75] = 45, - [76] = 16, - [77] = 21, - [78] = 22, - [79] = 47, - [80] = 18, - [81] = 19, - [82] = 20, - [83] = 23, - [84] = 24, - [85] = 25, + [74] = 14, + [75] = 17, + [76] = 25, + [77] = 15, + [78] = 16, + [79] = 18, + [80] = 19, + [81] = 20, + [82] = 21, + [83] = 22, + [84] = 23, + [85] = 24, [86] = 26, [87] = 27, [88] = 28, @@ -3490,17 +3483,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [92] = 32, [93] = 33, [94] = 34, - [95] = 35, - [96] = 36, - [97] = 37, - [98] = 38, + [95] = 36, + [96] = 37, + [97] = 38, + [98] = 39, [99] = 40, [100] = 41, [101] = 42, [102] = 43, - [103] = 44, - [104] = 45, - [105] = 24, + [103] = 29, + [104] = 104, + [105] = 105, [106] = 106, [107] = 107, [108] = 108, @@ -3509,40 +3502,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [111] = 111, [112] = 112, [113] = 113, - [114] = 114, + [114] = 112, [115] = 115, [116] = 116, - [117] = 115, - [118] = 118, - [119] = 118, - [120] = 118, + [117] = 116, + [118] = 115, + [119] = 116, + [120] = 120, [121] = 121, - [122] = 121, + [122] = 122, [123] = 123, [124] = 124, - [125] = 123, - [126] = 123, + [125] = 125, + [126] = 124, [127] = 127, - [128] = 128, + [128] = 124, [129] = 129, [130] = 130, - [131] = 130, + [131] = 131, [132] = 132, [133] = 133, - [134] = 134, + [134] = 129, [135] = 135, [136] = 136, [137] = 137, [138] = 138, [139] = 139, [140] = 140, - [141] = 134, + [141] = 140, [142] = 142, [143] = 143, - [144] = 143, + [144] = 144, [145] = 145, [146] = 146, - [147] = 146, + [147] = 147, [148] = 148, [149] = 149, [150] = 150, @@ -3551,41 +3544,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [153] = 153, [154] = 154, [155] = 155, - [156] = 155, + [156] = 156, [157] = 157, [158] = 158, [159] = 159, [160] = 160, [161] = 161, - [162] = 157, + [162] = 162, [163] = 163, [164] = 164, [165] = 165, - [166] = 149, + [166] = 166, [167] = 167, - [168] = 164, + [168] = 168, [169] = 169, - [170] = 146, - [171] = 148, - [172] = 150, - [173] = 152, - [174] = 153, - [175] = 154, - [176] = 164, - [177] = 169, - [178] = 148, - [179] = 150, - [180] = 152, - [181] = 153, - [182] = 154, - [183] = 160, - [184] = 161, - [185] = 165, - [186] = 149, - [187] = 160, - [188] = 161, - [189] = 165, - [190] = 169, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 190, [191] = 191, [192] = 192, [193] = 193, @@ -3606,46 +3599,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [208] = 208, [209] = 209, [210] = 210, - [211] = 205, + [211] = 186, [212] = 212, [213] = 213, [214] = 214, - [215] = 203, - [216] = 191, + [215] = 215, + [216] = 216, [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 213, + [221] = 221, [222] = 222, [223] = 223, - [224] = 192, - [225] = 193, + [224] = 224, + [225] = 225, [226] = 226, - [227] = 201, - [228] = 194, - [229] = 195, - [230] = 196, - [231] = 197, - [232] = 198, - [233] = 199, - [234] = 222, - [235] = 223, - [236] = 202, - [237] = 200, - [238] = 204, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, [239] = 239, [240] = 240, - [241] = 207, - [242] = 201, - [243] = 209, - [244] = 212, - [245] = 219, - [246] = 207, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, [247] = 247, [248] = 248, - [249] = 114, - [250] = 109, + [249] = 249, + [250] = 250, [251] = 251, [252] = 252, [253] = 253, @@ -3680,8 +3673,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [282] = 282, [283] = 283, [284] = 284, - [285] = 285, - [286] = 286, + [285] = 282, + [286] = 283, [287] = 287, [288] = 288, [289] = 289, @@ -3689,35 +3682,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [291] = 291, [292] = 292, [293] = 293, - [294] = 294, + [294] = 281, [295] = 295, - [296] = 296, + [296] = 280, [297] = 297, [298] = 298, [299] = 299, [300] = 300, - [301] = 301, - [302] = 302, - [303] = 303, - [304] = 304, - [305] = 305, - [306] = 306, - [307] = 307, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, + [301] = 297, + [302] = 292, + [303] = 293, + [304] = 295, + [305] = 289, + [306] = 290, + [307] = 284, + [308] = 300, + [309] = 297, + [310] = 292, + [311] = 293, + [312] = 295, + [313] = 289, + [314] = 290, + [315] = 284, + [316] = 298, + [317] = 299, + [318] = 281, + [319] = 298, + [320] = 299, + [321] = 280, + [322] = 300, [323] = 323, [324] = 324, [325] = 325, @@ -3732,12 +3725,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [334] = 334, [335] = 335, [336] = 336, - [337] = 337, + [337] = 333, [338] = 338, - [339] = 339, + [339] = 338, [340] = 340, - [341] = 341, - [342] = 342, + [341] = 331, + [342] = 323, [343] = 343, [344] = 344, [345] = 345, @@ -3745,41 +3738,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [347] = 347, [348] = 348, [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, + [350] = 325, + [351] = 326, + [352] = 327, + [353] = 329, [354] = 354, - [355] = 355, + [355] = 347, [356] = 356, - [357] = 357, - [358] = 358, + [357] = 345, + [358] = 349, [359] = 359, - [360] = 360, + [360] = 324, [361] = 361, [362] = 362, - [363] = 363, + [363] = 359, [364] = 364, - [365] = 365, + [365] = 354, [366] = 366, [367] = 367, - [368] = 368, + [368] = 346, [369] = 369, - [370] = 370, + [370] = 361, [371] = 371, [372] = 372, [373] = 373, - [374] = 374, + [374] = 348, [375] = 375, - [376] = 376, - [377] = 377, + [376] = 330, + [377] = 335, [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, + [379] = 356, + [380] = 367, + [381] = 378, + [382] = 335, + [383] = 378, + [384] = 340, [385] = 385, [386] = 386, [387] = 387, @@ -3788,7 +3781,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [390] = 390, [391] = 391, [392] = 392, - [393] = 389, + [393] = 393, [394] = 394, [395] = 395, [396] = 396, @@ -3797,78 +3790,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [399] = 399, [400] = 400, [401] = 400, - [402] = 400, + [402] = 402, [403] = 403, - [404] = 403, - [405] = 136, + [404] = 404, + [405] = 405, [406] = 406, - [407] = 407, + [407] = 406, [408] = 408, [409] = 409, [410] = 410, [411] = 411, [412] = 412, - [413] = 412, + [413] = 411, [414] = 414, - [415] = 415, + [415] = 411, [416] = 416, - [417] = 415, - [418] = 418, + [417] = 416, + [418] = 416, [419] = 419, - [420] = 419, - [421] = 419, - [422] = 415, + [420] = 420, + [421] = 421, + [422] = 405, [423] = 423, [424] = 424, [425] = 425, [426] = 426, [427] = 427, [428] = 428, - [429] = 429, + [429] = 423, [430] = 430, [431] = 431, [432] = 432, [433] = 433, - [434] = 411, + [434] = 434, [435] = 435, [436] = 436, [437] = 437, [438] = 438, [439] = 439, - [440] = 438, + [440] = 440, [441] = 441, [442] = 442, - [443] = 427, + [443] = 443, [444] = 444, - [445] = 438, + [445] = 445, [446] = 446, [447] = 447, - [448] = 448, + [448] = 412, [449] = 449, [450] = 450, [451] = 451, [452] = 452, [453] = 453, [454] = 454, - [455] = 439, + [455] = 455, [456] = 456, [457] = 457, [458] = 458, - [459] = 459, + [459] = 414, [460] = 460, [461] = 461, [462] = 462, [463] = 463, [464] = 464, - [465] = 347, + [465] = 465, [466] = 466, - [467] = 467, + [467] = 182, [468] = 468, [469] = 469, [470] = 470, [471] = 471, - [472] = 382, - [473] = 473, + [472] = 472, + [473] = 239, [474] = 474, [475] = 475, [476] = 476, @@ -3885,25 +3878,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [487] = 487, [488] = 488, [489] = 489, - [490] = 428, + [490] = 490, [491] = 491, [492] = 492, [493] = 493, - [494] = 429, + [494] = 494, [495] = 495, [496] = 496, - [497] = 497, + [497] = 419, [498] = 498, [499] = 499, [500] = 500, [501] = 501, - [502] = 459, - [503] = 458, - [504] = 504, + [502] = 502, + [503] = 503, + [504] = 421, [505] = 505, [506] = 506, - [507] = 460, - [508] = 508, + [507] = 441, + [508] = 420, [509] = 509, [510] = 510, [511] = 511, @@ -3953,10 +3946,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [555] = 555, [556] = 556, [557] = 557, - [558] = 437, - [559] = 436, - [560] = 483, - [561] = 432, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, [562] = 562, [563] = 563, [564] = 564, @@ -3975,9 +3968,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [577] = 577, [578] = 578, [579] = 579, - [580] = 431, - [581] = 498, - [582] = 430, + [580] = 580, + [581] = 581, + [582] = 582, [583] = 583, [584] = 584, [585] = 585, @@ -3992,292 +3985,292 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [594] = 594, [595] = 595, [596] = 596, - [597] = 597, + [597] = 480, [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, + [599] = 469, + [600] = 455, + [601] = 444, + [602] = 452, + [603] = 443, + [604] = 590, + [605] = 431, + [606] = 596, [607] = 607, - [608] = 608, - [609] = 609, + [608] = 591, + [609] = 589, [610] = 610, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 617, - [618] = 618, - [619] = 619, + [611] = 583, + [612] = 594, + [613] = 595, + [614] = 607, + [615] = 587, + [616] = 588, + [617] = 586, + [618] = 585, + [619] = 593, [620] = 620, - [621] = 621, - [622] = 622, - [623] = 484, - [624] = 624, - [625] = 509, - [626] = 626, - [627] = 505, - [628] = 468, - [629] = 613, - [630] = 626, - [631] = 631, - [632] = 631, - [633] = 614, - [634] = 610, - [635] = 618, + [621] = 584, + [622] = 592, + [623] = 623, + [624] = 516, + [625] = 625, + [626] = 432, + [627] = 623, + [628] = 511, + [629] = 512, + [630] = 115, + [631] = 434, + [632] = 632, + [633] = 633, + [634] = 634, + [635] = 635, [636] = 636, - [637] = 457, - [638] = 619, - [639] = 639, - [640] = 621, - [641] = 611, - [642] = 456, - [643] = 620, - [644] = 617, - [645] = 645, - [646] = 622, - [647] = 612, - [648] = 615, - [649] = 616, - [650] = 650, - [651] = 651, - [652] = 650, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 662, - [663] = 549, - [664] = 650, - [665] = 510, - [666] = 540, - [667] = 121, - [668] = 654, + [637] = 637, + [638] = 638, + [639] = 625, + [640] = 640, + [641] = 641, + [642] = 642, + [643] = 643, + [644] = 635, + [645] = 636, + [646] = 535, + [647] = 647, + [648] = 638, + [649] = 640, + [650] = 640, + [651] = 641, + [652] = 642, + [653] = 633, + [654] = 643, + [655] = 635, + [656] = 636, + [657] = 623, + [658] = 641, + [659] = 642, + [660] = 643, + [661] = 625, + [662] = 638, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, [669] = 669, [670] = 670, [671] = 671, - [672] = 659, - [673] = 661, - [674] = 669, - [675] = 670, - [676] = 671, - [677] = 655, - [678] = 657, - [679] = 660, - [680] = 659, - [681] = 661, - [682] = 669, - [683] = 670, - [684] = 671, - [685] = 655, - [686] = 657, - [687] = 660, - [688] = 571, + [672] = 515, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 688, [689] = 689, [690] = 690, - [691] = 691, - [692] = 574, - [693] = 452, - [694] = 694, - [695] = 461, - [696] = 467, - [697] = 470, - [698] = 698, - [699] = 699, - [700] = 700, + [691] = 690, + [692] = 692, + [693] = 693, + [694] = 677, + [695] = 695, + [696] = 674, + [697] = 697, + [698] = 689, + [699] = 687, + [700] = 683, [701] = 701, - [702] = 466, - [703] = 463, - [704] = 704, - [705] = 705, + [702] = 702, + [703] = 703, + [704] = 682, + [705] = 703, [706] = 706, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 710, + [707] = 689, + [708] = 692, + [709] = 687, + [710] = 683, [711] = 711, - [712] = 712, - [713] = 713, + [712] = 692, + [713] = 703, [714] = 714, - [715] = 451, - [716] = 716, + [715] = 697, + [716] = 682, [717] = 717, [718] = 718, [719] = 719, - [720] = 690, + [720] = 720, [721] = 721, [722] = 722, [723] = 723, - [724] = 724, - [725] = 725, - [726] = 721, + [724] = 443, + [725] = 431, + [726] = 726, [727] = 727, - [728] = 711, - [729] = 727, - [730] = 473, - [731] = 474, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, [732] = 732, [733] = 733, [734] = 734, - [735] = 453, + [735] = 732, [736] = 736, [737] = 737, [738] = 738, - [739] = 732, - [740] = 724, - [741] = 732, - [742] = 742, - [743] = 724, - [744] = 736, - [745] = 738, - [746] = 742, - [747] = 727, - [748] = 736, - [749] = 738, - [750] = 742, - [751] = 712, - [752] = 475, - [753] = 476, - [754] = 484, + [739] = 454, + [740] = 740, + [741] = 737, + [742] = 733, + [743] = 449, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 516, + [748] = 512, + [749] = 511, + [750] = 535, + [751] = 471, + [752] = 752, + [753] = 753, + [754] = 754, [755] = 755, - [756] = 756, - [757] = 469, - [758] = 758, - [759] = 759, - [760] = 760, + [756] = 472, + [757] = 460, + [758] = 456, + [759] = 475, + [760] = 470, [761] = 761, - [762] = 762, - [763] = 763, - [764] = 764, - [765] = 468, - [766] = 136, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 764, - [771] = 764, + [762] = 505, + [763] = 465, + [764] = 445, + [765] = 506, + [766] = 766, + [767] = 436, + [768] = 476, + [769] = 493, + [770] = 770, + [771] = 509, [772] = 772, - [773] = 773, + [773] = 435, [774] = 774, [775] = 775, [776] = 776, [777] = 777, [778] = 778, [779] = 779, - [780] = 780, - [781] = 781, + [780] = 776, + [781] = 776, [782] = 782, [783] = 783, - [784] = 781, + [784] = 784, [785] = 785, [786] = 786, - [787] = 787, - [788] = 785, + [787] = 784, + [788] = 788, [789] = 789, - [790] = 787, - [791] = 791, - [792] = 792, - [793] = 793, - [794] = 794, - [795] = 540, - [796] = 510, + [790] = 788, + [791] = 782, + [792] = 785, + [793] = 789, + [794] = 782, + [795] = 795, + [796] = 796, [797] = 797, - [798] = 794, + [798] = 798, [799] = 799, - [800] = 549, + [800] = 800, [801] = 801, [802] = 802, - [803] = 571, - [804] = 794, + [803] = 802, + [804] = 804, [805] = 805, [806] = 806, [807] = 807, [808] = 808, [809] = 809, [810] = 810, - [811] = 807, + [811] = 811, [812] = 812, [813] = 813, [814] = 814, - [815] = 461, - [816] = 816, - [817] = 817, + [815] = 811, + [816] = 814, + [817] = 811, [818] = 818, - [819] = 819, + [819] = 426, [820] = 820, [821] = 821, [822] = 822, [823] = 823, - [824] = 824, - [825] = 825, - [826] = 433, - [827] = 827, - [828] = 828, - [829] = 829, + [824] = 425, + [825] = 818, + [826] = 826, + [827] = 428, + [828] = 427, + [829] = 821, [830] = 830, - [831] = 831, - [832] = 469, - [833] = 829, - [834] = 435, - [835] = 835, - [836] = 829, + [831] = 460, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 830, + [836] = 836, [837] = 837, [838] = 838, [839] = 839, - [840] = 839, + [840] = 840, [841] = 841, - [842] = 838, + [842] = 842, [843] = 843, - [844] = 843, + [844] = 844, [845] = 845, - [846] = 841, - [847] = 442, + [846] = 846, + [847] = 847, [848] = 848, [849] = 849, [850] = 850, [851] = 851, [852] = 852, - [853] = 853, + [853] = 476, [854] = 854, [855] = 855, [856] = 856, [857] = 857, - [858] = 447, + [858] = 555, [859] = 859, - [860] = 855, - [861] = 850, + [860] = 860, + [861] = 439, [862] = 862, [863] = 863, [864] = 864, [865] = 865, - [866] = 446, - [867] = 448, - [868] = 450, - [869] = 449, - [870] = 863, - [871] = 447, - [872] = 862, + [866] = 442, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, [873] = 873, - [874] = 873, + [874] = 874, [875] = 875, [876] = 876, [877] = 877, [878] = 878, [879] = 879, - [880] = 875, + [880] = 880, [881] = 881, - [882] = 882, + [882] = 442, [883] = 883, [884] = 884, [885] = 885, @@ -4289,7 +4282,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [891] = 891, [892] = 892, [893] = 893, - [894] = 894, + [894] = 883, [895] = 895, [896] = 896, [897] = 897, @@ -4297,26 +4290,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [899] = 899, [900] = 900, [901] = 901, - [902] = 902, + [902] = 881, [903] = 903, [904] = 904, [905] = 905, - [906] = 480, + [906] = 906, [907] = 907, - [908] = 908, + [908] = 893, [909] = 909, [910] = 910, - [911] = 909, - [912] = 909, + [911] = 911, + [912] = 912, [913] = 913, [914] = 914, - [915] = 915, - [916] = 916, + [915] = 898, + [916] = 899, [917] = 917, [918] = 918, - [919] = 919, + [919] = 745, [920] = 920, - [921] = 921, + [921] = 896, [922] = 922, [923] = 923, [924] = 924, @@ -4328,40 +4321,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [930] = 930, [931] = 931, [932] = 932, - [933] = 933, + [933] = 885, [934] = 934, [935] = 935, [936] = 936, - [937] = 937, + [937] = 928, [938] = 938, [939] = 939, [940] = 940, [941] = 941, [942] = 942, - [943] = 943, + [943] = 932, [944] = 944, [945] = 945, [946] = 946, [947] = 947, [948] = 948, - [949] = 792, - [950] = 942, - [951] = 944, + [949] = 949, + [950] = 950, + [951] = 951, [952] = 952, [953] = 953, [954] = 954, [955] = 955, [956] = 956, - [957] = 948, + [957] = 957, [958] = 958, [959] = 959, [960] = 960, - [961] = 947, - [962] = 945, + [961] = 961, + [962] = 962, [963] = 963, [964] = 964, [965] = 965, - [966] = 963, + [966] = 966, [967] = 967, [968] = 968, [969] = 969, @@ -4375,17 +4368,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [977] = 977, [978] = 978, [979] = 979, - [980] = 980, + [980] = 963, [981] = 981, - [982] = 946, + [982] = 982, [983] = 983, [984] = 984, [985] = 985, - [986] = 981, + [986] = 986, [987] = 987, [988] = 988, [989] = 989, - [990] = 990, + [990] = 878, [991] = 991, [992] = 992, [993] = 993, @@ -4404,11 +4397,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 1008, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 1013, + [1009] = 952, + [1010] = 1000, + [1011] = 952, + [1012] = 1000, + [1013] = 977, [1014] = 1014, [1015] = 1015, [1016] = 1016, @@ -4428,7 +4421,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1030] = 1030, [1031] = 1031, [1032] = 1032, - [1033] = 968, + [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, @@ -4449,14 +4442,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1051] = 1051, [1052] = 1052, [1053] = 1053, - [1054] = 1054, - [1055] = 1055, - [1056] = 1015, + [1054] = 1046, + [1055] = 1022, + [1056] = 1056, [1057] = 1057, - [1058] = 1031, - [1059] = 1008, + [1058] = 986, + [1059] = 1059, [1060] = 1060, - [1061] = 1031, + [1061] = 1061, [1062] = 1062, [1063] = 1063, [1064] = 1064, @@ -4464,14 +4457,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1066] = 1066, [1067] = 1067, [1068] = 1068, - [1069] = 1069, + [1069] = 1057, [1070] = 1070, [1071] = 1071, - [1072] = 1072, + [1072] = 1059, [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 1076, + [1076] = 1057, [1077] = 1077, [1078] = 1078, [1079] = 1079, @@ -4486,44 +4479,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1088] = 1088, [1089] = 1089, [1090] = 1090, - [1091] = 1091, + [1091] = 1067, [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1088, - [1099] = 1095, + [1093] = 1084, + [1094] = 1018, + [1095] = 1083, + [1096] = 1085, + [1097] = 1059, + [1098] = 1098, + [1099] = 1099, [1100] = 1100, - [1101] = 1101, - [1102] = 1030, - [1103] = 1094, + [1101] = 1034, + [1102] = 1036, + [1103] = 1103, [1104] = 1104, [1105] = 1105, [1106] = 1106, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, + [1107] = 1067, + [1108] = 1100, + [1109] = 1018, + [1110] = 1083, + [1111] = 1085, [1112] = 1112, - [1113] = 1113, - [1114] = 1101, - [1115] = 1094, - [1116] = 1116, + [1113] = 1100, + [1114] = 1034, + [1115] = 1036, + [1116] = 1103, [1117] = 1117, [1118] = 1118, [1119] = 1119, [1120] = 1120, [1121] = 1121, - [1122] = 1122, - [1123] = 1123, + [1122] = 1103, + [1123] = 1035, [1124] = 1124, - [1125] = 1125, + [1125] = 1035, [1126] = 1126, [1127] = 1127, - [1128] = 1063, + [1128] = 1128, [1129] = 1129, [1130] = 1130, [1131] = 1131, @@ -4531,46 +4524,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1133] = 1133, [1134] = 1134, [1135] = 1135, - [1136] = 1105, + [1136] = 1136, [1137] = 1137, - [1138] = 1101, + [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, - [1142] = 1076, - [1143] = 1084, + [1142] = 1142, + [1143] = 1143, [1144] = 1144, [1145] = 1145, - [1146] = 1110, - [1147] = 1083, - [1148] = 1086, - [1149] = 1113, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, [1150] = 1150, [1151] = 1151, - [1152] = 1105, + [1152] = 1152, [1153] = 1153, [1154] = 1154, - [1155] = 1140, - [1156] = 1076, - [1157] = 1084, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, [1158] = 1158, - [1159] = 1110, - [1160] = 1083, - [1161] = 1086, - [1162] = 1113, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, [1167] = 1167, [1168] = 1168, - [1169] = 1063, + [1169] = 1169, [1170] = 1170, [1171] = 1171, - [1172] = 1131, + [1172] = 1172, [1173] = 1173, [1174] = 1174, - [1175] = 1140, + [1175] = 1175, [1176] = 1176, [1177] = 1177, [1178] = 1178, @@ -4596,17 +4589,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1198] = 1198, [1199] = 1199, [1200] = 1200, - [1201] = 1201, - [1202] = 1202, + [1201] = 1153, + [1202] = 1179, [1203] = 1203, [1204] = 1204, [1205] = 1205, [1206] = 1206, - [1207] = 1207, + [1207] = 1200, [1208] = 1208, [1209] = 1209, [1210] = 1210, - [1211] = 1211, + [1211] = 1179, [1212] = 1212, [1213] = 1213, [1214] = 1214, @@ -4623,11 +4616,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1225] = 1225, [1226] = 1226, [1227] = 1227, - [1228] = 1228, - [1229] = 1229, + [1228] = 1200, + [1229] = 1153, [1230] = 1230, - [1231] = 1231, - [1232] = 1216, + [1231] = 323, + [1232] = 1232, [1233] = 1233, [1234] = 1234, [1235] = 1235, @@ -4655,18 +4648,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1257] = 1257, [1258] = 1258, [1259] = 1259, - [1260] = 1231, - [1261] = 1216, - [1262] = 389, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, [1263] = 1263, [1264] = 1264, - [1265] = 1231, + [1265] = 1265, [1266] = 1266, [1267] = 1267, [1268] = 1268, [1269] = 1269, - [1270] = 1270, - [1271] = 1228, + [1270] = 1156, + [1271] = 1271, [1272] = 1272, [1273] = 1273, [1274] = 1274, @@ -4678,14 +4671,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1280] = 1280, [1281] = 1281, [1282] = 1282, - [1283] = 1283, + [1283] = 1282, [1284] = 1284, [1285] = 1285, [1286] = 1286, [1287] = 1287, [1288] = 1288, [1289] = 1289, - [1290] = 1290, + [1290] = 1274, [1291] = 1291, [1292] = 1292, [1293] = 1293, @@ -4693,11 +4686,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1295] = 1295, [1296] = 1296, [1297] = 1297, - [1298] = 1298, + [1298] = 1279, [1299] = 1299, [1300] = 1300, [1301] = 1301, - [1302] = 1302, + [1302] = 1300, [1303] = 1303, [1304] = 1304, [1305] = 1305, @@ -4706,17 +4699,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1308] = 1308, [1309] = 1309, [1310] = 1310, - [1311] = 1311, + [1311] = 1300, [1312] = 1312, [1313] = 1313, - [1314] = 1314, - [1315] = 1300, + [1314] = 1299, + [1315] = 1315, [1316] = 1316, [1317] = 1317, [1318] = 1318, [1319] = 1319, [1320] = 1320, - [1321] = 1317, + [1321] = 1321, [1322] = 1322, [1323] = 1323, [1324] = 1324, @@ -4725,54 +4718,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1327] = 1327, [1328] = 1328, [1329] = 1329, - [1330] = 1330, + [1330] = 1274, [1331] = 1331, [1332] = 1332, - [1333] = 1304, - [1334] = 1334, + [1333] = 1333, + [1334] = 1292, [1335] = 1335, - [1336] = 1325, + [1336] = 1336, [1337] = 1337, - [1338] = 1304, + [1338] = 1338, [1339] = 1339, [1340] = 1340, [1341] = 1341, [1342] = 1342, - [1343] = 1300, + [1343] = 1343, [1344] = 1344, - [1345] = 1345, - [1346] = 1346, + [1345] = 1338, + [1346] = 1343, [1347] = 1347, - [1348] = 1327, - [1349] = 1349, + [1348] = 1348, + [1349] = 1343, [1350] = 1350, [1351] = 1351, [1352] = 1352, [1353] = 1353, - [1354] = 1307, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, - [1358] = 1358, - [1359] = 1359, - [1360] = 1314, - [1361] = 1361, - [1362] = 1298, - [1363] = 1353, - [1364] = 1364, - [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 1368, - [1369] = 1298, - [1370] = 1370, - [1371] = 1371, - [1372] = 1372, - [1373] = 1373, - [1374] = 1374, - [1375] = 1375, - [1376] = 1376, - [1377] = 1377, + [1354] = 1278, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -4804,7 +4774,7 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, - {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, + {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, @@ -4814,8 +4784,8 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, - {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, - {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, + {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, + {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, @@ -4828,38 +4798,40 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, - {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, - {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, - {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, - {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, - {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, - {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, - {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, - {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, - {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, - {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, - {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, - {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, - {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, - {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, - {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, - {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, - {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, - {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, - {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, - {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, - {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, - {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, - {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, - {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, - {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, - {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, - {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, - {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, - {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, - {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, + {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, + {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, + {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, + {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, + {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, + {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, + {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, + {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, + {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, + {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, + {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, + {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, + {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, + {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, + {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, + {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, + {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, + {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, + {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, + {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, + {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, + {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, + {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, + {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, + {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, + {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, + {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, + {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, + {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; static TSCharacterRange sym_identifier_character_set_2[] = { @@ -4869,7 +4841,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, - {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, + {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, @@ -4897,7 +4869,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, - {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, + {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, @@ -4908,7 +4880,7 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, - {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, + {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, @@ -4921,39 +4893,42 @@ static TSCharacterRange sym_identifier_character_set_2[] = { {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, - {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, - {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, - {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, - {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, - {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, - {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, - {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, - {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, - {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, - {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, - {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, - {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, - {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, - {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, + {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, + {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, + {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, + {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, + {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, + {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, + {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, + {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, + {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, + {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, + {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, + {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, + {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, + {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, + {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, + {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, - {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, - {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, - {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, - {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, - {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, - {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, - {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, - {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, - {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, - {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, - {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, - {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, - {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, - {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, - {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, - {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, - {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, + {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, + {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, + {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, + {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, + {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, + {0x16100, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, + {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, + {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, + {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, + {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, + {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, + {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, + {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, + {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, + {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, + {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, + {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, + {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, @@ -4968,1343 +4943,1412 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(69); + if (eof) ADVANCE(72); ADVANCE_MAP( - '!', 182, - '"', 102, - '%', 171, - '&', 131, - '\'', 23, - '(', 127, - ')', 128, - '*', 162, - '+', 158, - ',', 179, - '-', 159, - '.', 190, - '/', 164, - '0', 71, - ':', 181, - ';', 194, - '<', 149, - '=', 133, - '>', 146, - '?', 180, - '@', 196, - '[', 186, - '\\', 44, - ']', 187, - '^', 169, - 'n', 202, - '{', 193, - '|', 166, - '}', 119, - '~', 183, + '!', 188, + '"', 105, + '%', 175, + '&', 134, + '\'', 25, + '(', 130, + ')', 131, + '*', 166, + '+', 161, + ',', 183, + '-', 163, + '.', 196, + '/', 168, + '0', 74, + ':', 186, + ';', 200, + '<', 152, + '=', 136, + '>', 149, + '?', 184, + '@', 202, + '[', 192, + '\\', 46, + ']', 193, + '^', 173, + 'n', 208, + '{', 199, + '|', 170, + '}', 122, + '~', 189, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + lookahead == ' ') SKIP(69); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(76); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); case 1: ADVANCE_MAP( - '!', 182, - '"', 102, - '%', 171, - '&', 131, - '\'', 23, - '(', 127, - ')', 128, - '*', 162, - '+', 158, - ',', 179, - '-', 159, - '.', 190, - '/', 164, - '0', 71, - ':', 181, - ';', 194, - '<', 149, - '=', 133, - '>', 146, - '?', 180, - '@', 195, - '[', 186, - ']', 187, - '^', 169, - '{', 193, - '|', 166, - '}', 119, - '~', 183, + '!', 188, + '"', 105, + '%', 174, + '&', 133, + '\'', 25, + '(', 130, + ')', 131, + '*', 165, + '+', 160, + ',', 183, + '-', 164, + '.', 16, + '/', 167, + '0', 74, + ':', 186, + ';', 200, + '<', 153, + '=', 24, + '>', 150, + '?', 184, + '@', 201, + '[', 192, + ']', 193, + '^', 172, + '{', 199, + '|', 171, + '}', 122, + '~', 189, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(76); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); case 2: ADVANCE_MAP( - '!', 182, - '"', 102, - '%', 171, - '&', 131, - '\'', 23, - '(', 127, - ')', 128, - '*', 162, - '+', 158, - ',', 179, - '-', 159, - '.', 191, - '/', 164, - '0', 71, - ':', 20, - ';', 194, - '<', 149, - '=', 133, - '>', 146, - '?', 180, - '@', 195, - '[', 186, - '^', 169, - 'n', 202, - '|', 166, - '}', 119, - '~', 183, + '!', 187, + '"', 105, + '&', 132, + '\'', 25, + '(', 130, + ')', 131, + '+', 160, + ',', 183, + '-', 162, + '.', 55, + '/', 13, + '0', 74, + ':', 185, + ';', 200, + '=', 135, + '>', 148, + '@', 201, + '[', 192, + 'n', 208, + '}', 122, + '~', 189, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(76); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); case 3: ADVANCE_MAP( - '!', 21, - '%', 170, - '&', 130, - '(', 127, - ')', 128, - '*', 161, - '+', 157, - ',', 179, - '-', 160, - '.', 188, - '/', 163, - ':', 181, - ';', 194, - '<', 150, - '=', 133, - '>', 147, - '?', 180, - '@', 195, - '[', 186, - ']', 187, - '^', 168, - 'n', 202, - '|', 167, - '}', 119, + '!', 23, + '%', 175, + '&', 134, + '(', 130, + ')', 131, + '*', 166, + '+', 161, + ',', 183, + '-', 163, + '.', 195, + '/', 168, + ':', 186, + ';', 200, + '<', 152, + '=', 136, + '>', 149, + '?', 184, + '@', 201, + '[', 192, + ']', 193, + '^', 173, + '{', 199, + '|', 170, + '}', 122, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); case 4: ADVANCE_MAP( - '!', 21, - '%', 170, - '&', 130, - '(', 127, - ')', 128, - '*', 161, - '+', 157, - ',', 179, - '-', 160, - '.', 188, - '/', 163, - ':', 181, - ';', 194, - '<', 150, - '=', 22, - '>', 147, - '?', 180, - '@', 195, - '[', 186, - ']', 187, - '^', 168, - '{', 193, - '|', 167, - '}', 119, + '!', 23, + '%', 174, + '&', 133, + '(', 130, + ')', 131, + '*', 165, + '+', 160, + ',', 183, + '-', 164, + '.', 194, + '/', 167, + ':', 186, + ';', 200, + '<', 153, + '=', 24, + '>', 150, + '?', 184, + '@', 201, + '[', 192, + ']', 193, + '^', 172, + '{', 199, + '|', 171, + '}', 122, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(103); + if (lookahead == '"') ADVANCE(106); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(116); - if (lookahead == '/') ADVANCE(111); - if (lookahead == '\\') ADVANCE(44); + if (lookahead == '"') ADVANCE(119); + if (lookahead == '/') ADVANCE(114); + if (lookahead == '\\') ADVANCE(46); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(114); - if (lookahead != 0) ADVANCE(115); + lookahead == ' ') ADVANCE(117); + if (lookahead != 0) ADVANCE(118); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(117); + if (lookahead == '"') ADVANCE(120); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(101); - if (lookahead == '/') ADVANCE(105); - if (lookahead == '\\') ADVANCE(45); + if (lookahead == '"') ADVANCE(104); + if (lookahead == '/') ADVANCE(108); + if (lookahead == '\\') ADVANCE(47); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(108); - if (lookahead != 0) ADVANCE(109); + lookahead == ' ') ADVANCE(111); + if (lookahead != 0) ADVANCE(112); END_STATE(); case 9: ADVANCE_MAP( - '&', 129, - '(', 127, - ')', 128, - ',', 179, - '.', 189, - '/', 11, - ':', 181, - ';', 194, - '<', 148, - '=', 132, - '>', 145, - '?', 180, - '@', 195, - '[', 186, - '{', 193, - '|', 165, + '&', 132, + '(', 130, + ')', 131, + ',', 183, + '.', 195, + '/', 13, + ':', 186, + ';', 200, + '<', 151, + '=', 135, + '>', 148, + '?', 184, + '@', 201, + '[', 192, + '{', 199, + '|', 169, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); case 10: - if (lookahead == '\'') ADVANCE(100); - if (lookahead == '\\') ADVANCE(66); + if (lookahead == '\'') ADVANCE(103); + if (lookahead == '\\') ADVANCE(68); if (lookahead != 0 && lookahead != '\n') ADVANCE(10); END_STATE(); case 11: - if (lookahead == '*') ADVANCE(13); - if (lookahead == '/') ADVANCE(204); + ADVANCE_MAP( + '(', 130, + ',', 183, + '.', 194, + '/', 13, + ';', 200, + '<', 151, + '@', 202, + 'n', 208, + '{', 199, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(11); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); case 12: - if (lookahead == '*') ADVANCE(12); - if (lookahead == '/') ADVANCE(205); - if (lookahead != 0) ADVANCE(13); + if (lookahead == '(') ADVANCE(130); + if (lookahead == '.') ADVANCE(194); + if (lookahead == '/') ADVANCE(13); + if (lookahead == '@') ADVANCE(201); + if (lookahead == '[') ADVANCE(192); + if (lookahead == 'n') ADVANCE(208); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(12); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); case 13: - if (lookahead == '*') ADVANCE(12); - if (lookahead != 0) ADVANCE(13); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '/') ADVANCE(210); END_STATE(); case 14: - if (lookahead == '.') ADVANCE(89); - if (lookahead == '_') ADVANCE(54); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(14); + if (lookahead == '*') ADVANCE(14); + if (lookahead == '/') ADVANCE(211); + if (lookahead != 0) ADVANCE(15); END_STATE(); case 15: - if (lookahead == '.') ADVANCE(199); + if (lookahead == '*') ADVANCE(14); + if (lookahead != 0) ADVANCE(15); END_STATE(); case 16: - if (lookahead == '.') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + if (lookahead == '.') ADVANCE(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); END_STATE(); case 17: - if (lookahead == '/') ADVANCE(11); - if (lookahead == '<') ADVANCE(148); - if (lookahead == '@') ADVANCE(38); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(17); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + if (lookahead == '.') ADVANCE(92); + if (lookahead == '_') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(17); END_STATE(); case 18: - if (lookahead == '0') ADVANCE(99); - if (lookahead == '+' || - lookahead == '-') ADVANCE(19); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(97); + if (lookahead == '.') ADVANCE(205); END_STATE(); case 19: - if (lookahead == '0') ADVANCE(99); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(97); + if (lookahead == '.') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); case 20: - if (lookahead == ':') ADVANCE(192); + if (lookahead == '/') ADVANCE(13); + if (lookahead == '<') ADVANCE(151); + if (lookahead == '@') ADVANCE(40); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(20); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(154); + if (lookahead == '0') ADVANCE(102); + if (lookahead == '+' || + lookahead == '-') ADVANCE(22); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(100); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(153); + if (lookahead == '0') ADVANCE(102); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(100); END_STATE(); case 23: - if (lookahead == '\\') ADVANCE(66); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\'') ADVANCE(10); + if (lookahead == '=') ADVANCE(157); END_STATE(); case 24: - if (lookahead == '_') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (lookahead == '=') ADVANCE(156); END_STATE(); case 25: - if (lookahead == '_') ADVANCE(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(72); + if (lookahead == '\\') ADVANCE(68); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'') ADVANCE(10); END_STATE(); case 26: - if (lookahead == '_') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + if (lookahead == '_') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); case 27: - if (lookahead == '_') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); + if (lookahead == '_') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); END_STATE(); case 28: - if (lookahead == '_') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); + if (lookahead == '_') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(81); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); case 29: - if (lookahead == 'a') ADVANCE(39); + if (lookahead == '_') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); END_STATE(); case 30: - if (lookahead == 'a') ADVANCE(31); + if (lookahead == '_') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); END_STATE(); case 31: - if (lookahead == 'c') ADVANCE(36); + if (lookahead == 'a') ADVANCE(41); END_STATE(); case 32: - if (lookahead == 'd') ADVANCE(197); + if (lookahead == 'a') ADVANCE(33); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'c') ADVANCE(38); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(29); + if (lookahead == 'd') ADVANCE(203); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(32); + if (lookahead == 'e') ADVANCE(43); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'e') ADVANCE(31); END_STATE(); case 37: - if (lookahead == 'f') ADVANCE(30); + if (lookahead == 'e') ADVANCE(34); END_STATE(); case 38: - if (lookahead == 'i') ADVANCE(40); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 39: - if (lookahead == 'l') ADVANCE(35); + if (lookahead == 'f') ADVANCE(32); END_STATE(); case 40: - if (lookahead == 'n') ADVANCE(43); + if (lookahead == 'i') ADVANCE(42); END_STATE(); case 41: - if (lookahead == 'r') ADVANCE(37); + if (lookahead == 'l') ADVANCE(37); END_STATE(); case 42: - if (lookahead == 's') ADVANCE(34); + if (lookahead == 'n') ADVANCE(45); END_STATE(); case 43: - if (lookahead == 't') ADVANCE(33); + if (lookahead == 'r') ADVANCE(39); END_STATE(); case 44: - if (lookahead == 'u') ADVANCE(121); - if (lookahead == 'x') ADVANCE(123); - if (lookahead == '{') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(122); + if (lookahead == 's') ADVANCE(36); + END_STATE(); + case 45: + if (lookahead == 't') ADVANCE(35); + END_STATE(); + case 46: + if (lookahead == 'u') ADVANCE(124); + if (lookahead == 'x') ADVANCE(126); + if (lookahead == '{') ADVANCE(121); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); if (lookahead == '"' || lookahead == '\'' || lookahead == '\\' || lookahead == 'b' || lookahead == 'f' || lookahead == 'n' || - ('r' <= lookahead && lookahead <= 't')) ADVANCE(124); - if (lookahead != 0) ADVANCE(120); - END_STATE(); - case 45: - if (lookahead == 'u') ADVANCE(47); - if (lookahead == 'x') ADVANCE(64); - if (lookahead == '{') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(126); - if (lookahead != 0) ADVANCE(124); - END_STATE(); - case 46: - if (lookahead == '{') ADVANCE(118); + ('r' <= lookahead && lookahead <= 't')) ADVANCE(127); + if (lookahead != 0) ADVANCE(123); END_STATE(); case 47: - if (lookahead == '{') ADVANCE(63); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + if (lookahead == 'u') ADVANCE(49); + if (lookahead == 'x') ADVANCE(66); + if (lookahead == '{') ADVANCE(121); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(129); + if (lookahead != 0) ADVANCE(127); END_STATE(); case 48: - if (lookahead == '}') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + if (lookahead == '{') ADVANCE(121); END_STATE(); case 49: - if (lookahead == '+' || - lookahead == '-') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); + if (lookahead == '{') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); END_STATE(); case 50: - if (lookahead == '0' || - lookahead == '1') ADVANCE(85); + if (lookahead == '}') ADVANCE(127); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 51: - if (lookahead == '8' || - lookahead == '9') ADVANCE(14); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(82); + if (lookahead == '+' || + lookahead == '-') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(83); + if (lookahead == '0' || + lookahead == '1') ADVANCE(88); END_STATE(); case 53: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (lookahead == '8' || + lookahead == '9') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(85); END_STATE(); case 54: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(14); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(86); END_STATE(); case 55: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); END_STATE(); case 56: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(17); END_STATE(); case 57: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); END_STATE(); case 58: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); END_STATE(); case 59: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(81); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); case 60: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); END_STATE(); case 61: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); END_STATE(); case 62: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); END_STATE(); case 63: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); case 64: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); END_STATE(); case 65: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 66: - if (lookahead != 0) ADVANCE(10); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); END_STATE(); case 67: - if (eof) ADVANCE(69); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + END_STATE(); + case 68: + if (lookahead != 0) ADVANCE(10); + END_STATE(); + case 69: + if (eof) ADVANCE(72); ADVANCE_MAP( - '!', 182, - '"', 102, - '%', 171, - '&', 131, - '\'', 23, - '(', 127, - ')', 128, - '*', 162, - '+', 158, - ',', 179, - '-', 159, - '.', 190, - '/', 164, - '0', 71, - ':', 181, - ';', 194, - '<', 149, - '=', 133, - '>', 146, - '?', 180, - '@', 196, - '[', 186, - '\\', 46, - ']', 187, - '^', 169, - 'n', 202, - '{', 193, - '|', 166, - '}', 119, - '~', 183, + '!', 188, + '"', 105, + '%', 175, + '&', 134, + '\'', 25, + '(', 130, + ')', 131, + '*', 166, + '+', 161, + ',', 183, + '-', 163, + '.', 196, + '/', 168, + '0', 74, + ':', 186, + ';', 200, + '<', 152, + '=', 136, + '>', 149, + '?', 184, + '@', 202, + '[', 192, + '\\', 48, + ']', 193, + '^', 173, + 'n', 208, + '{', 199, + '|', 170, + '}', 122, + '~', 189, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + lookahead == ' ') SKIP(69); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(76); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); - case 68: - if (eof) ADVANCE(69); + case 70: + if (eof) ADVANCE(72); ADVANCE_MAP( - '!', 182, - '"', 102, - '%', 170, - '&', 130, - '\'', 23, - '(', 127, - ')', 128, - '*', 161, - '+', 157, - ',', 179, - '-', 160, - '.', 191, - '/', 163, - '0', 71, - ':', 181, - ';', 194, - '<', 150, - '=', 22, - '>', 147, - '?', 180, - '@', 196, - '[', 186, - ']', 187, - '^', 168, - 'n', 202, - '{', 193, - '|', 167, - '}', 119, - '~', 183, + '!', 188, + '"', 105, + '%', 174, + '&', 133, + '\'', 25, + '(', 130, + ')', 131, + '*', 165, + '+', 160, + ',', 183, + '-', 164, + '.', 197, + '/', 167, + '0', 74, + ':', 186, + ';', 200, + '<', 153, + '=', 24, + '>', 150, + '?', 184, + '@', 202, + '[', 192, + ']', 193, + '^', 172, + 'n', 208, + '{', 199, + '|', 171, + '}', 122, + '~', 189, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); - if (set_contains(sym_identifier_character_set_1, 669, lookahead)) ADVANCE(203); + lookahead == ' ') SKIP(70); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(76); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); END_STATE(); - case 69: + case 71: + if (eof) ADVANCE(72); + ADVANCE_MAP( + '!', 188, + '"', 105, + '%', 174, + '&', 133, + '\'', 25, + '(', 130, + ')', 131, + '*', 165, + '+', 160, + ',', 183, + '-', 164, + '.', 55, + '/', 167, + '0', 74, + ':', 185, + ';', 200, + '<', 153, + '=', 24, + '>', 150, + '?', 184, + '@', 202, + ']', 193, + '^', 172, + 'n', 208, + '{', 199, + '|', 171, + '}', 122, + '~', 189, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(76); + if (set_contains(sym_identifier_character_set_1, 686, lookahead)) ADVANCE(209); + END_STATE(); + case 72: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 70: + case 73: ACCEPT_TOKEN(sym_decimal_integer_literal); END_STATE(); - case 71: + case 74: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 89, - '_', 54, - 'B', 50, - 'b', 50, - 'E', 49, - 'e', 49, - 'L', 70, - 'l', 70, - 'O', 52, - 'o', 52, - 'P', 49, - 'p', 49, - 'X', 16, - 'x', 16, - '8', 14, - '9', 14, - 'D', 86, - 'F', 86, - 'd', 86, - 'f', 86, + '.', 92, + '_', 56, + 'B', 52, + 'b', 52, + 'E', 51, + 'e', 51, + 'L', 73, + 'l', 73, + 'O', 54, + 'o', 54, + 'P', 51, + 'p', 51, + 'X', 19, + 'x', 19, + '8', 17, + '9', 17, + 'D', 89, + 'F', 89, + 'd', 89, + 'f', 89, ); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(82); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(85); END_STATE(); - case 72: + case 75: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 89, - '_', 25, - 'E', 49, - 'e', 49, - 'L', 70, - 'l', 70, - 'P', 49, - 'p', 49, - 'D', 86, - 'F', 86, - 'd', 86, - 'f', 86, + '.', 92, + '_', 27, + 'E', 51, + 'e', 51, + 'L', 73, + 'l', 73, + 'P', 51, + 'p', 51, + 'D', 89, + 'F', 89, + 'd', 89, + 'f', 89, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); END_STATE(); - case 73: + case 76: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '.', 89, - '_', 56, - 'E', 49, - 'e', 49, - 'L', 70, - 'l', 70, - 'P', 49, - 'p', 49, - 'D', 86, - 'F', 86, - 'd', 86, - 'f', 86, + '.', 92, + '_', 58, + 'E', 51, + 'e', 51, + 'L', 73, + 'l', 73, + 'P', 51, + 'p', 51, + 'D', 89, + 'F', 89, + 'd', 89, + 'f', 89, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); END_STATE(); - case 74: + case 77: ACCEPT_TOKEN(sym_decimal_integer_literal); ADVANCE_MAP( - '_', 24, - 'E', 49, - 'e', 49, - 'L', 70, - 'l', 70, - 'P', 49, - 'p', 49, - 'D', 86, - 'F', 86, - 'd', 86, - 'f', 86, + '_', 26, + 'E', 51, + 'e', 51, + 'L', 73, + 'l', 73, + 'P', 51, + 'p', 51, + 'D', 89, + 'F', 89, + 'd', 89, + 'f', 89, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); - case 75: + case 78: ACCEPT_TOKEN(sym_hex_integer_literal); END_STATE(); - case 76: + case 79: ACCEPT_TOKEN(sym_hex_integer_literal); ADVANCE_MAP( - '.', 98, - '0', 79, - '_', 61, - '+', 19, - '-', 19, - 'E', 76, - 'e', 76, - 'L', 75, - 'l', 75, - 'P', 18, - 'p', 18, + '.', 101, + '0', 82, + '_', 63, + '+', 22, + '-', 22, + 'E', 79, + 'e', 79, + 'L', 78, + 'l', 78, + 'P', 21, + 'p', 21, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(77); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(80); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); - case 77: + case 80: ACCEPT_TOKEN(sym_hex_integer_literal); ADVANCE_MAP( - '.', 98, - '_', 57, - 'E', 76, - 'e', 76, - 'L', 75, - 'l', 75, - 'P', 18, - 'p', 18, - 'D', 80, - 'F', 80, - 'd', 80, - 'f', 80, + '.', 101, + '_', 59, + 'E', 79, + 'e', 79, + 'L', 78, + 'l', 78, + 'P', 21, + 'p', 21, + 'D', 83, + 'F', 83, + 'd', 83, + 'f', 83, ); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(81); END_STATE(); - case 78: + case 81: ACCEPT_TOKEN(sym_hex_integer_literal); ADVANCE_MAP( - '.', 98, - '_', 26, - 'E', 76, - 'e', 76, - 'L', 75, - 'l', 75, - 'P', 18, - 'p', 18, - 'D', 80, - 'F', 80, - 'd', 80, - 'f', 80, + '.', 101, + '_', 28, + 'E', 79, + 'e', 79, + 'L', 78, + 'l', 78, + 'P', 21, + 'p', 21, + 'D', 83, + 'F', 83, + 'd', 83, + 'f', 83, ); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(81); END_STATE(); - case 79: + case 82: ACCEPT_TOKEN(sym_hex_integer_literal); ADVANCE_MAP( - '.', 98, - '_', 61, - 'E', 76, - 'e', 76, - 'L', 75, - 'l', 75, - 'P', 18, - 'p', 18, - 'D', 80, - 'F', 80, - 'd', 80, - 'f', 80, + '.', 101, + '_', 63, + 'E', 79, + 'e', 79, + 'L', 78, + 'l', 78, + 'P', 21, + 'p', 21, + 'D', 83, + 'F', 83, + 'd', 83, + 'f', 83, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(80); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(83); END_STATE(); - case 80: + case 83: ACCEPT_TOKEN(sym_hex_integer_literal); ADVANCE_MAP( - '.', 98, - '_', 61, - 'E', 76, - 'e', 76, - 'L', 75, - 'l', 75, - 'P', 18, - 'p', 18, + '.', 101, + '_', 63, + 'E', 79, + 'e', 79, + 'L', 78, + 'l', 78, + 'P', 21, + 'p', 21, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); END_STATE(); - case 81: + case 84: ACCEPT_TOKEN(sym_octal_integer_literal); END_STATE(); - case 82: + case 85: ACCEPT_TOKEN(sym_octal_integer_literal); - if (lookahead == '.') ADVANCE(89); - if (lookahead == '_') ADVANCE(51); + if (lookahead == '.') ADVANCE(92); + if (lookahead == '_') ADVANCE(53); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(81); + lookahead == 'l') ADVANCE(84); if (lookahead == '8' || - lookahead == '9') ADVANCE(14); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(82); + lookahead == '9') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(85); END_STATE(); - case 83: + case 86: ACCEPT_TOKEN(sym_octal_integer_literal); - if (lookahead == '_') ADVANCE(52); + if (lookahead == '_') ADVANCE(54); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(83); + lookahead == 'l') ADVANCE(84); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(86); END_STATE(); - case 84: + case 87: ACCEPT_TOKEN(sym_binary_integer_literal); END_STATE(); - case 85: + case 88: ACCEPT_TOKEN(sym_binary_integer_literal); - if (lookahead == '_') ADVANCE(50); + if (lookahead == '_') ADVANCE(52); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(84); + lookahead == 'l') ADVANCE(87); if (lookahead == '0' || - lookahead == '1') ADVANCE(85); + lookahead == '1') ADVANCE(88); END_STATE(); - case 86: + case 89: ACCEPT_TOKEN(sym_decimal_floating_point_literal); END_STATE(); - case 87: + case 90: ACCEPT_TOKEN(sym_decimal_floating_point_literal); - if (lookahead == '_') ADVANCE(53); + if (lookahead == '_') ADVANCE(55); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); + lookahead == 'e') ADVANCE(51); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); END_STATE(); - case 88: + case 91: ACCEPT_TOKEN(sym_decimal_floating_point_literal); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '_') ADVANCE(57); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(88); + lookahead == 'f') ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); END_STATE(); - case 89: + case 92: ACCEPT_TOKEN(sym_decimal_floating_point_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); + lookahead == 'e') ADVANCE(51); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); END_STATE(); - case 90: + case 93: ACCEPT_TOKEN(sym_hex_floating_point_literal); END_STATE(); - case 91: + case 94: ACCEPT_TOKEN(sym_hex_floating_point_literal); ADVANCE_MAP( - '0', 92, - '_', 62, - '+', 19, - '-', 19, - 'E', 91, - 'e', 91, - 'P', 18, - 'p', 18, + '0', 95, + '_', 64, + '+', 22, + '-', 22, + 'E', 94, + 'e', 94, + 'P', 21, + 'p', 21, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(94); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(97); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); END_STATE(); - case 92: + case 95: ACCEPT_TOKEN(sym_hex_floating_point_literal); ADVANCE_MAP( - '_', 62, - 'E', 91, - 'e', 91, - 'P', 18, - 'p', 18, - 'D', 93, - 'F', 93, - 'd', 93, - 'f', 93, + '_', 64, + 'E', 94, + 'e', 94, + 'P', 21, + 'p', 21, + 'D', 96, + 'F', 96, + 'd', 96, + 'f', 96, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(96); END_STATE(); - case 93: + case 96: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(62); + if (lookahead == '_') ADVANCE(64); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(91); + lookahead == 'e') ADVANCE(94); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(18); + lookahead == 'p') ADVANCE(21); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); END_STATE(); - case 94: + case 97: ACCEPT_TOKEN(sym_hex_floating_point_literal); ADVANCE_MAP( - '_', 59, - 'E', 91, - 'e', 91, - 'P', 18, - 'p', 18, - 'D', 93, - 'F', 93, - 'd', 93, - 'f', 93, + '_', 61, + 'E', 94, + 'e', 94, + 'P', 21, + 'p', 21, + 'D', 96, + 'F', 96, + 'd', 96, + 'f', 96, ); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); END_STATE(); - case 95: + case 98: ACCEPT_TOKEN(sym_hex_floating_point_literal); ADVANCE_MAP( - '_', 28, - 'E', 91, - 'e', 91, - 'P', 18, - 'p', 18, - 'D', 93, - 'F', 93, - 'd', 93, - 'f', 93, + '_', 30, + 'E', 94, + 'e', 94, + 'P', 21, + 'p', 21, + 'D', 96, + 'F', 96, + 'd', 96, + 'f', 96, ); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); END_STATE(); - case 96: + case 99: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(27); + if (lookahead == '_') ADVANCE(29); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(90); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); + lookahead == 'f') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); END_STATE(); - case 97: + case 100: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(58); + if (lookahead == '_') ADVANCE(60); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(90); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); + lookahead == 'f') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); END_STATE(); - case 98: + case 101: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(91); + lookahead == 'e') ADVANCE(94); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(18); + lookahead == 'p') ADVANCE(21); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); END_STATE(); - case 99: + case 102: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(90); + lookahead == 'f') ADVANCE(93); END_STATE(); - case 100: + case 103: ACCEPT_TOKEN(sym_character_literal); END_STATE(); - case 101: + case 104: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 102: + case 105: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead == '"') ADVANCE(5); END_STATE(); - case 103: + case 106: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 104: + case 107: ACCEPT_TOKEN(sym_string_fragment); - if (lookahead == '\n') ADVANCE(109); + if (lookahead == '\n') ADVANCE(112); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(104); + lookahead != '\\') ADVANCE(107); END_STATE(); - case 105: + case 108: ACCEPT_TOKEN(sym_string_fragment); - if (lookahead == '*') ADVANCE(107); - if (lookahead == '/') ADVANCE(104); + if (lookahead == '*') ADVANCE(110); + if (lookahead == '/') ADVANCE(107); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(109); + lookahead != '\\') ADVANCE(112); END_STATE(); - case 106: + case 109: ACCEPT_TOKEN(sym_string_fragment); - if (lookahead == '*') ADVANCE(106); - if (lookahead == '/') ADVANCE(109); + if (lookahead == '*') ADVANCE(109); + if (lookahead == '/') ADVANCE(112); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(107); + lookahead != '\\') ADVANCE(110); END_STATE(); - case 107: + case 110: ACCEPT_TOKEN(sym_string_fragment); - if (lookahead == '*') ADVANCE(106); + if (lookahead == '*') ADVANCE(109); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(107); + lookahead != '\\') ADVANCE(110); END_STATE(); - case 108: + case 111: ACCEPT_TOKEN(sym_string_fragment); - if (lookahead == '/') ADVANCE(105); + if (lookahead == '/') ADVANCE(108); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(108); + lookahead == ' ') ADVANCE(111); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(109); + lookahead != '\\') ADVANCE(112); END_STATE(); - case 109: + case 112: ACCEPT_TOKEN(sym_string_fragment); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(109); + lookahead != '\\') ADVANCE(112); END_STATE(); - case 110: + case 113: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); - if (lookahead == '\n') ADVANCE(115); + if (lookahead == '\n') ADVANCE(118); if (lookahead == '"' || - lookahead == '\\') ADVANCE(204); - if (lookahead != 0) ADVANCE(110); + lookahead == '\\') ADVANCE(210); + if (lookahead != 0) ADVANCE(113); END_STATE(); - case 111: + case 114: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); - if (lookahead == '*') ADVANCE(113); - if (lookahead == '/') ADVANCE(110); + if (lookahead == '*') ADVANCE(116); + if (lookahead == '/') ADVANCE(113); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(115); + lookahead != '\\') ADVANCE(118); END_STATE(); - case 112: + case 115: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == '/') ADVANCE(115); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '/') ADVANCE(118); if (lookahead == '"' || - lookahead == '\\') ADVANCE(13); - if (lookahead != 0) ADVANCE(113); + lookahead == '\\') ADVANCE(15); + if (lookahead != 0) ADVANCE(116); END_STATE(); - case 113: + case 116: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); - if (lookahead == '*') ADVANCE(112); + if (lookahead == '*') ADVANCE(115); if (lookahead == '"' || - lookahead == '\\') ADVANCE(13); - if (lookahead != 0) ADVANCE(113); + lookahead == '\\') ADVANCE(15); + if (lookahead != 0) ADVANCE(116); END_STATE(); - case 114: + case 117: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); - if (lookahead == '/') ADVANCE(111); + if (lookahead == '/') ADVANCE(114); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(114); + lookahead == ' ') ADVANCE(117); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(115); + lookahead != '\\') ADVANCE(118); END_STATE(); - case 115: + case 118: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(115); + lookahead != '\\') ADVANCE(118); END_STATE(); - case 116: + case 119: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token2); if (lookahead == '"') ADVANCE(5); if (lookahead == '\\') ADVANCE(7); - if (lookahead != 0) ADVANCE(117); + if (lookahead != 0) ADVANCE(120); END_STATE(); - case 117: + case 120: ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token2); if (lookahead == '\\') ADVANCE(7); if (lookahead != 0 && - lookahead != '"') ADVANCE(117); + lookahead != '"') ADVANCE(120); END_STATE(); - case 118: + case 121: ACCEPT_TOKEN(anon_sym_BSLASH_LBRACE); END_STATE(); - case 119: + case 122: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 120: + case 123: ACCEPT_TOKEN(aux_sym__escape_sequence_token1); END_STATE(); - case 121: + case 124: ACCEPT_TOKEN(aux_sym__escape_sequence_token1); - if (lookahead == '{') ADVANCE(63); + if (lookahead == '{') ADVANCE(65); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); END_STATE(); - case 122: + case 125: ACCEPT_TOKEN(aux_sym__escape_sequence_token1); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); END_STATE(); - case 123: + case 126: ACCEPT_TOKEN(aux_sym__escape_sequence_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); END_STATE(); - case 124: + case 127: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 125: + case 128: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(124); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(127); END_STATE(); - case 126: + case 129: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(125); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); END_STATE(); - case 127: + case 130: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 128: + case 131: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 129: + case 132: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 130: + case 133: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(155); + if (lookahead == '&') ADVANCE(158); END_STATE(); - case 131: + case 134: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(155); - if (lookahead == '=') ADVANCE(138); + if (lookahead == '&') ADVANCE(158); + if (lookahead == '=') ADVANCE(141); END_STATE(); - case 132: + case 135: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 133: + case 136: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(153); + if (lookahead == '=') ADVANCE(156); END_STATE(); - case 134: + case 137: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 135: + case 138: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 136: + case 139: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 137: + case 140: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 138: + case 141: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 139: + case 142: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 140: + case 143: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 141: + case 144: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 142: + case 145: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 143: + case 146: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 144: + case 147: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 145: + case 148: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 146: + case 149: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(151); - if (lookahead == '>') ADVANCE(174); + if (lookahead == '=') ADVANCE(154); + if (lookahead == '>') ADVANCE(178); END_STATE(); - case 147: + case 150: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(151); - if (lookahead == '>') ADVANCE(175); + if (lookahead == '=') ADVANCE(154); + if (lookahead == '>') ADVANCE(179); END_STATE(); - case 148: + case 151: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 149: + case 152: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(173); - if (lookahead == '=') ADVANCE(152); + if (lookahead == '<') ADVANCE(177); + if (lookahead == '=') ADVANCE(155); END_STATE(); - case 150: + case 153: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(172); - if (lookahead == '=') ADVANCE(152); + if (lookahead == '<') ADVANCE(176); + if (lookahead == '=') ADVANCE(155); END_STATE(); - case 151: + case 154: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 152: + case 155: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 153: + case 156: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 154: + case 157: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 155: + case 158: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 156: + case 159: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 157: + case 160: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(184); + if (lookahead == '+') ADVANCE(190); END_STATE(); - case 158: + case 161: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(184); - if (lookahead == '=') ADVANCE(134); + if (lookahead == '+') ADVANCE(190); + if (lookahead == '=') ADVANCE(137); END_STATE(); - case 159: + case 162: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(185); - if (lookahead == '=') ADVANCE(135); - if (lookahead == '>') ADVANCE(178); + if (lookahead == '-') ADVANCE(191); END_STATE(); - case 160: + case 163: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(185); - if (lookahead == '>') ADVANCE(178); + if (lookahead == '-') ADVANCE(191); + if (lookahead == '=') ADVANCE(138); + if (lookahead == '>') ADVANCE(182); END_STATE(); - case 161: + case 164: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(191); + if (lookahead == '>') ADVANCE(182); + END_STATE(); + case 165: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 162: + case 166: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(136); + if (lookahead == '=') ADVANCE(139); END_STATE(); - case 163: + case 167: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(13); - if (lookahead == '/') ADVANCE(204); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '/') ADVANCE(210); END_STATE(); - case 164: + case 168: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(13); - if (lookahead == '/') ADVANCE(204); - if (lookahead == '=') ADVANCE(137); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '/') ADVANCE(210); + if (lookahead == '=') ADVANCE(140); END_STATE(); - case 165: + case 169: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 166: + case 170: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(139); - if (lookahead == '|') ADVANCE(156); + if (lookahead == '=') ADVANCE(142); + if (lookahead == '|') ADVANCE(159); END_STATE(); - case 167: + case 171: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(156); + if (lookahead == '|') ADVANCE(159); END_STATE(); - case 168: + case 172: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 169: + case 173: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(140); + if (lookahead == '=') ADVANCE(143); END_STATE(); - case 170: + case 174: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 171: + case 175: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') ADVANCE(144); END_STATE(); - case 172: + case 176: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 173: + case 177: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(142); + if (lookahead == '=') ADVANCE(145); END_STATE(); - case 174: + case 178: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '>') ADVANCE(177); + if (lookahead == '=') ADVANCE(146); + if (lookahead == '>') ADVANCE(181); END_STATE(); - case 175: + case 179: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(176); + if (lookahead == '>') ADVANCE(180); END_STATE(); - case 176: + case 180: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 177: + case 181: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(144); + if (lookahead == '=') ADVANCE(147); END_STATE(); - case 178: + case 182: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 179: + case 183: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 180: + case 184: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 181: + case 185: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(192); END_STATE(); - case 182: + case 186: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(198); + END_STATE(); + case 187: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(154); END_STATE(); - case 183: + case 188: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(157); + END_STATE(); + case 189: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 184: + case 190: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 185: + case 191: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 186: + case 192: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 187: + case 193: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 188: + case 194: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 189: + case 195: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(15); + if (lookahead == '.') ADVANCE(18); END_STATE(); - case 190: + case 196: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (lookahead == '.') ADVANCE(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); END_STATE(); - case 191: + case 197: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(90); END_STATE(); - case 192: + case 198: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 193: + case 199: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 194: + case 200: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 195: + case 201: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 196: + case 202: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == 'i') ADVANCE(40); + if (lookahead == 'i') ADVANCE(42); END_STATE(); - case 197: + case 203: ACCEPT_TOKEN(anon_sym_non_DASHsealed); END_STATE(); - case 198: + case 204: ACCEPT_TOKEN(anon_sym_ATinterface); END_STATE(); - case 199: + case 205: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 200: + case 206: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(42); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(203); + if (lookahead == '-') ADVANCE(44); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(209); END_STATE(); - case 201: + case 207: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(200); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(203); + if (lookahead == 'n') ADVANCE(206); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(209); END_STATE(); - case 202: + case 208: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(201); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(203); + if (lookahead == 'o') ADVANCE(207); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(209); END_STATE(); - case 203: + case 209: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 778, lookahead)) ADVANCE(203); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(209); END_STATE(); - case 204: + case 210: ACCEPT_TOKEN(sym_line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(204); + lookahead != '\n') ADVANCE(210); END_STATE(); - case 205: + case 211: ACCEPT_TOKEN(sym_block_comment); END_STATE(); default: @@ -7288,532 +7332,532 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 0}, - [2] = {.lex_state = 0}, - [3] = {.lex_state = 0}, - [4] = {.lex_state = 0}, - [5] = {.lex_state = 0}, - [6] = {.lex_state = 0}, - [7] = {.lex_state = 0}, - [8] = {.lex_state = 0}, - [9] = {.lex_state = 0}, - [10] = {.lex_state = 0}, - [11] = {.lex_state = 0}, - [12] = {.lex_state = 0}, - [13] = {.lex_state = 0}, - [14] = {.lex_state = 0}, - [15] = {.lex_state = 0}, - [16] = {.lex_state = 0}, - [17] = {.lex_state = 0}, - [18] = {.lex_state = 0}, - [19] = {.lex_state = 0}, - [20] = {.lex_state = 0}, - [21] = {.lex_state = 0}, - [22] = {.lex_state = 0}, - [23] = {.lex_state = 0}, - [24] = {.lex_state = 0}, - [25] = {.lex_state = 0}, - [26] = {.lex_state = 0}, - [27] = {.lex_state = 0}, - [28] = {.lex_state = 0}, - [29] = {.lex_state = 0}, - [30] = {.lex_state = 0}, - [31] = {.lex_state = 0}, - [32] = {.lex_state = 0}, - [33] = {.lex_state = 0}, - [34] = {.lex_state = 0}, - [35] = {.lex_state = 0}, - [36] = {.lex_state = 0}, - [37] = {.lex_state = 0}, - [38] = {.lex_state = 0}, - [39] = {.lex_state = 0}, - [40] = {.lex_state = 0}, - [41] = {.lex_state = 0}, - [42] = {.lex_state = 0}, - [43] = {.lex_state = 0}, - [44] = {.lex_state = 0}, - [45] = {.lex_state = 0}, - [46] = {.lex_state = 0}, - [47] = {.lex_state = 0}, - [48] = {.lex_state = 0}, - [49] = {.lex_state = 0}, - [50] = {.lex_state = 0}, - [51] = {.lex_state = 0}, - [52] = {.lex_state = 0}, - [53] = {.lex_state = 0}, - [54] = {.lex_state = 0}, - [55] = {.lex_state = 0}, - [56] = {.lex_state = 0}, - [57] = {.lex_state = 0}, - [58] = {.lex_state = 0}, - [59] = {.lex_state = 0}, - [60] = {.lex_state = 0}, - [61] = {.lex_state = 0}, - [62] = {.lex_state = 0}, - [63] = {.lex_state = 0}, - [64] = {.lex_state = 0}, - [65] = {.lex_state = 0}, - [66] = {.lex_state = 0}, - [67] = {.lex_state = 0}, - [68] = {.lex_state = 0}, - [69] = {.lex_state = 0}, - [70] = {.lex_state = 0}, - [71] = {.lex_state = 0}, - [72] = {.lex_state = 0}, - [73] = {.lex_state = 0}, - [74] = {.lex_state = 0}, - [75] = {.lex_state = 0}, - [76] = {.lex_state = 0}, - [77] = {.lex_state = 0}, - [78] = {.lex_state = 0}, - [79] = {.lex_state = 0}, - [80] = {.lex_state = 0}, - [81] = {.lex_state = 0}, - [82] = {.lex_state = 0}, - [83] = {.lex_state = 0}, - [84] = {.lex_state = 0}, - [85] = {.lex_state = 0}, - [86] = {.lex_state = 0}, - [87] = {.lex_state = 0}, - [88] = {.lex_state = 0}, - [89] = {.lex_state = 0}, - [90] = {.lex_state = 0}, - [91] = {.lex_state = 0}, - [92] = {.lex_state = 0}, - [93] = {.lex_state = 0}, - [94] = {.lex_state = 0}, - [95] = {.lex_state = 0}, - [96] = {.lex_state = 0}, - [97] = {.lex_state = 0}, - [98] = {.lex_state = 0}, - [99] = {.lex_state = 0}, - [100] = {.lex_state = 0}, - [101] = {.lex_state = 0}, - [102] = {.lex_state = 0}, - [103] = {.lex_state = 0}, - [104] = {.lex_state = 0}, - [105] = {.lex_state = 0}, - [106] = {.lex_state = 1}, - [107] = {.lex_state = 68}, - [108] = {.lex_state = 68}, - [109] = {.lex_state = 68}, - [110] = {.lex_state = 68}, - [111] = {.lex_state = 68}, - [112] = {.lex_state = 68}, - [113] = {.lex_state = 68}, - [114] = {.lex_state = 68}, - [115] = {.lex_state = 2}, - [116] = {.lex_state = 2}, - [117] = {.lex_state = 2}, - [118] = {.lex_state = 2}, - [119] = {.lex_state = 2}, - [120] = {.lex_state = 2}, - [121] = {.lex_state = 68}, - [122] = {.lex_state = 68}, - [123] = {.lex_state = 1}, - [124] = {.lex_state = 1}, - [125] = {.lex_state = 1}, - [126] = {.lex_state = 1}, - [127] = {.lex_state = 1}, - [128] = {.lex_state = 1}, - [129] = {.lex_state = 1}, - [130] = {.lex_state = 1}, - [131] = {.lex_state = 1}, - [132] = {.lex_state = 1}, - [133] = {.lex_state = 1}, - [134] = {.lex_state = 1}, - [135] = {.lex_state = 1}, - [136] = {.lex_state = 0}, - [137] = {.lex_state = 1}, - [138] = {.lex_state = 1}, - [139] = {.lex_state = 1}, - [140] = {.lex_state = 1}, - [141] = {.lex_state = 1}, - [142] = {.lex_state = 1}, - [143] = {.lex_state = 1}, - [144] = {.lex_state = 1}, - [145] = {.lex_state = 1}, - [146] = {.lex_state = 1}, - [147] = {.lex_state = 1}, - [148] = {.lex_state = 1}, - [149] = {.lex_state = 1}, - [150] = {.lex_state = 1}, - [151] = {.lex_state = 1}, - [152] = {.lex_state = 1}, - [153] = {.lex_state = 1}, - [154] = {.lex_state = 1}, - [155] = {.lex_state = 1}, - [156] = {.lex_state = 1}, - [157] = {.lex_state = 1}, - [158] = {.lex_state = 0}, - [159] = {.lex_state = 0}, - [160] = {.lex_state = 1}, - [161] = {.lex_state = 1}, - [162] = {.lex_state = 1}, - [163] = {.lex_state = 0}, - [164] = {.lex_state = 1}, - [165] = {.lex_state = 1}, - [166] = {.lex_state = 1}, - [167] = {.lex_state = 1}, - [168] = {.lex_state = 1}, - [169] = {.lex_state = 1}, - [170] = {.lex_state = 1}, - [171] = {.lex_state = 1}, - [172] = {.lex_state = 1}, - [173] = {.lex_state = 1}, - [174] = {.lex_state = 1}, - [175] = {.lex_state = 1}, - [176] = {.lex_state = 1}, - [177] = {.lex_state = 1}, - [178] = {.lex_state = 1}, - [179] = {.lex_state = 1}, - [180] = {.lex_state = 1}, - [181] = {.lex_state = 1}, - [182] = {.lex_state = 1}, - [183] = {.lex_state = 1}, - [184] = {.lex_state = 1}, - [185] = {.lex_state = 1}, - [186] = {.lex_state = 1}, - [187] = {.lex_state = 1}, - [188] = {.lex_state = 1}, - [189] = {.lex_state = 1}, - [190] = {.lex_state = 1}, - [191] = {.lex_state = 1}, - [192] = {.lex_state = 1}, - [193] = {.lex_state = 1}, - [194] = {.lex_state = 1}, - [195] = {.lex_state = 1}, - [196] = {.lex_state = 1}, - [197] = {.lex_state = 1}, - [198] = {.lex_state = 1}, - [199] = {.lex_state = 1}, - [200] = {.lex_state = 1}, - [201] = {.lex_state = 1}, - [202] = {.lex_state = 1}, - [203] = {.lex_state = 1}, - [204] = {.lex_state = 1}, - [205] = {.lex_state = 1}, - [206] = {.lex_state = 1}, - [207] = {.lex_state = 1}, - [208] = {.lex_state = 1}, - [209] = {.lex_state = 1}, - [210] = {.lex_state = 1}, - [211] = {.lex_state = 1}, - [212] = {.lex_state = 1}, - [213] = {.lex_state = 1}, - [214] = {.lex_state = 0}, - [215] = {.lex_state = 1}, - [216] = {.lex_state = 1}, - [217] = {.lex_state = 1}, - [218] = {.lex_state = 1}, - [219] = {.lex_state = 1}, - [220] = {.lex_state = 1}, - [221] = {.lex_state = 1}, - [222] = {.lex_state = 1}, - [223] = {.lex_state = 1}, - [224] = {.lex_state = 1}, - [225] = {.lex_state = 1}, - [226] = {.lex_state = 1}, - [227] = {.lex_state = 1}, - [228] = {.lex_state = 1}, - [229] = {.lex_state = 1}, - [230] = {.lex_state = 1}, - [231] = {.lex_state = 1}, - [232] = {.lex_state = 1}, - [233] = {.lex_state = 1}, - [234] = {.lex_state = 1}, - [235] = {.lex_state = 1}, - [236] = {.lex_state = 1}, - [237] = {.lex_state = 1}, - [238] = {.lex_state = 1}, - [239] = {.lex_state = 1}, - [240] = {.lex_state = 1}, - [241] = {.lex_state = 1}, - [242] = {.lex_state = 1}, - [243] = {.lex_state = 1}, - [244] = {.lex_state = 1}, - [245] = {.lex_state = 1}, - [246] = {.lex_state = 1}, - [247] = {.lex_state = 1}, - [248] = {.lex_state = 2}, - [249] = {.lex_state = 0}, - [250] = {.lex_state = 0}, - [251] = {.lex_state = 2}, - [252] = {.lex_state = 0}, - [253] = {.lex_state = 2}, - [254] = {.lex_state = 2}, - [255] = {.lex_state = 0}, - [256] = {.lex_state = 0}, - [257] = {.lex_state = 0}, - [258] = {.lex_state = 0}, - [259] = {.lex_state = 0}, - [260] = {.lex_state = 0}, - [261] = {.lex_state = 0}, - [262] = {.lex_state = 0}, - [263] = {.lex_state = 0}, - [264] = {.lex_state = 0}, - [265] = {.lex_state = 0}, - [266] = {.lex_state = 0}, - [267] = {.lex_state = 0}, - [268] = {.lex_state = 0}, - [269] = {.lex_state = 0}, - [270] = {.lex_state = 0}, - [271] = {.lex_state = 0}, - [272] = {.lex_state = 0}, - [273] = {.lex_state = 0}, - [274] = {.lex_state = 0}, - [275] = {.lex_state = 0}, - [276] = {.lex_state = 0}, - [277] = {.lex_state = 0}, - [278] = {.lex_state = 0}, - [279] = {.lex_state = 0}, - [280] = {.lex_state = 0}, - [281] = {.lex_state = 0}, - [282] = {.lex_state = 0}, - [283] = {.lex_state = 0}, - [284] = {.lex_state = 0}, - [285] = {.lex_state = 0}, - [286] = {.lex_state = 0}, - [287] = {.lex_state = 0}, - [288] = {.lex_state = 0}, - [289] = {.lex_state = 0}, - [290] = {.lex_state = 0}, - [291] = {.lex_state = 0}, - [292] = {.lex_state = 0}, - [293] = {.lex_state = 0}, - [294] = {.lex_state = 0}, - [295] = {.lex_state = 0}, - [296] = {.lex_state = 0}, - [297] = {.lex_state = 0}, - [298] = {.lex_state = 0}, - [299] = {.lex_state = 0}, - [300] = {.lex_state = 0}, - [301] = {.lex_state = 0}, - [302] = {.lex_state = 0}, - [303] = {.lex_state = 0}, - [304] = {.lex_state = 0}, - [305] = {.lex_state = 0}, - [306] = {.lex_state = 0}, - [307] = {.lex_state = 0}, - [308] = {.lex_state = 0}, - [309] = {.lex_state = 0}, - [310] = {.lex_state = 0}, - [311] = {.lex_state = 0}, - [312] = {.lex_state = 0}, - [313] = {.lex_state = 0}, - [314] = {.lex_state = 0}, - [315] = {.lex_state = 0}, - [316] = {.lex_state = 0}, - [317] = {.lex_state = 0}, - [318] = {.lex_state = 0}, - [319] = {.lex_state = 0}, - [320] = {.lex_state = 0}, - [321] = {.lex_state = 0}, - [322] = {.lex_state = 0}, - [323] = {.lex_state = 0}, - [324] = {.lex_state = 0}, - [325] = {.lex_state = 0}, - [326] = {.lex_state = 0}, - [327] = {.lex_state = 0}, - [328] = {.lex_state = 0}, - [329] = {.lex_state = 0}, - [330] = {.lex_state = 0}, - [331] = {.lex_state = 0}, - [332] = {.lex_state = 0}, - [333] = {.lex_state = 0}, - [334] = {.lex_state = 0}, - [335] = {.lex_state = 0}, - [336] = {.lex_state = 0}, - [337] = {.lex_state = 0}, - [338] = {.lex_state = 0}, - [339] = {.lex_state = 0}, - [340] = {.lex_state = 0}, - [341] = {.lex_state = 0}, - [342] = {.lex_state = 0}, - [343] = {.lex_state = 0}, - [344] = {.lex_state = 0}, - [345] = {.lex_state = 0}, - [346] = {.lex_state = 0}, - [347] = {.lex_state = 0}, - [348] = {.lex_state = 0}, - [349] = {.lex_state = 0}, - [350] = {.lex_state = 0}, - [351] = {.lex_state = 0}, - [352] = {.lex_state = 0}, - [353] = {.lex_state = 0}, - [354] = {.lex_state = 0}, - [355] = {.lex_state = 0}, - [356] = {.lex_state = 0}, - [357] = {.lex_state = 0}, - [358] = {.lex_state = 0}, - [359] = {.lex_state = 0}, - [360] = {.lex_state = 0}, - [361] = {.lex_state = 0}, - [362] = {.lex_state = 0}, - [363] = {.lex_state = 0}, - [364] = {.lex_state = 0}, - [365] = {.lex_state = 0}, - [366] = {.lex_state = 0}, - [367] = {.lex_state = 0}, - [368] = {.lex_state = 0}, - [369] = {.lex_state = 0}, - [370] = {.lex_state = 0}, - [371] = {.lex_state = 0}, - [372] = {.lex_state = 0}, - [373] = {.lex_state = 0}, - [374] = {.lex_state = 0}, - [375] = {.lex_state = 0}, - [376] = {.lex_state = 0}, - [377] = {.lex_state = 0}, - [378] = {.lex_state = 0}, - [379] = {.lex_state = 0}, - [380] = {.lex_state = 0}, - [381] = {.lex_state = 0}, - [382] = {.lex_state = 0}, - [383] = {.lex_state = 0}, - [384] = {.lex_state = 0}, - [385] = {.lex_state = 0}, - [386] = {.lex_state = 0}, - [387] = {.lex_state = 0}, - [388] = {.lex_state = 0}, - [389] = {.lex_state = 0}, - [390] = {.lex_state = 0}, - [391] = {.lex_state = 0}, - [392] = {.lex_state = 0}, - [393] = {.lex_state = 0}, - [394] = {.lex_state = 0}, - [395] = {.lex_state = 0}, - [396] = {.lex_state = 0}, - [397] = {.lex_state = 0}, - [398] = {.lex_state = 0}, - [399] = {.lex_state = 0}, - [400] = {.lex_state = 0}, - [401] = {.lex_state = 0}, - [402] = {.lex_state = 2}, - [403] = {.lex_state = 1}, - [404] = {.lex_state = 1}, - [405] = {.lex_state = 3}, - [406] = {.lex_state = 0}, - [407] = {.lex_state = 0}, - [408] = {.lex_state = 0}, - [409] = {.lex_state = 0}, - [410] = {.lex_state = 0}, - [411] = {.lex_state = 1}, - [412] = {.lex_state = 1}, - [413] = {.lex_state = 1}, - [414] = {.lex_state = 0}, - [415] = {.lex_state = 1}, - [416] = {.lex_state = 0}, - [417] = {.lex_state = 1}, - [418] = {.lex_state = 0}, - [419] = {.lex_state = 1}, - [420] = {.lex_state = 1}, - [421] = {.lex_state = 1}, - [422] = {.lex_state = 1}, - [423] = {.lex_state = 1}, - [424] = {.lex_state = 0}, - [425] = {.lex_state = 0}, - [426] = {.lex_state = 0}, - [427] = {.lex_state = 1}, - [428] = {.lex_state = 1}, - [429] = {.lex_state = 1}, - [430] = {.lex_state = 4}, - [431] = {.lex_state = 4}, - [432] = {.lex_state = 1}, + [1] = {.lex_state = 71, .reserved_word_set_id = 1}, + [2] = {.lex_state = 71, .reserved_word_set_id = 1}, + [3] = {.lex_state = 71, .reserved_word_set_id = 1}, + [4] = {.lex_state = 71, .reserved_word_set_id = 1}, + [5] = {.lex_state = 71, .reserved_word_set_id = 1}, + [6] = {.lex_state = 71, .reserved_word_set_id = 2}, + [7] = {.lex_state = 71, .reserved_word_set_id = 1}, + [8] = {.lex_state = 71, .reserved_word_set_id = 3}, + [9] = {.lex_state = 71, .reserved_word_set_id = 1}, + [10] = {.lex_state = 71, .reserved_word_set_id = 1}, + [11] = {.lex_state = 71, .reserved_word_set_id = 3}, + [12] = {.lex_state = 71, .reserved_word_set_id = 1}, + [13] = {.lex_state = 71, .reserved_word_set_id = 3}, + [14] = {.lex_state = 71, .reserved_word_set_id = 3}, + [15] = {.lex_state = 71, .reserved_word_set_id = 3}, + [16] = {.lex_state = 71, .reserved_word_set_id = 3}, + [17] = {.lex_state = 71, .reserved_word_set_id = 3}, + [18] = {.lex_state = 71, .reserved_word_set_id = 3}, + [19] = {.lex_state = 71, .reserved_word_set_id = 3}, + [20] = {.lex_state = 71, .reserved_word_set_id = 3}, + [21] = {.lex_state = 71, .reserved_word_set_id = 3}, + [22] = {.lex_state = 71, .reserved_word_set_id = 3}, + [23] = {.lex_state = 71, .reserved_word_set_id = 3}, + [24] = {.lex_state = 71, .reserved_word_set_id = 3}, + [25] = {.lex_state = 71, .reserved_word_set_id = 3}, + [26] = {.lex_state = 71, .reserved_word_set_id = 3}, + [27] = {.lex_state = 71, .reserved_word_set_id = 3}, + [28] = {.lex_state = 71, .reserved_word_set_id = 3}, + [29] = {.lex_state = 71, .reserved_word_set_id = 3}, + [30] = {.lex_state = 71, .reserved_word_set_id = 3}, + [31] = {.lex_state = 71, .reserved_word_set_id = 3}, + [32] = {.lex_state = 71, .reserved_word_set_id = 3}, + [33] = {.lex_state = 71, .reserved_word_set_id = 3}, + [34] = {.lex_state = 71, .reserved_word_set_id = 3}, + [35] = {.lex_state = 71, .reserved_word_set_id = 3}, + [36] = {.lex_state = 71, .reserved_word_set_id = 3}, + [37] = {.lex_state = 71, .reserved_word_set_id = 3}, + [38] = {.lex_state = 71, .reserved_word_set_id = 3}, + [39] = {.lex_state = 71, .reserved_word_set_id = 3}, + [40] = {.lex_state = 71, .reserved_word_set_id = 3}, + [41] = {.lex_state = 71, .reserved_word_set_id = 3}, + [42] = {.lex_state = 71, .reserved_word_set_id = 3}, + [43] = {.lex_state = 71, .reserved_word_set_id = 3}, + [44] = {.lex_state = 71, .reserved_word_set_id = 3}, + [45] = {.lex_state = 71, .reserved_word_set_id = 3}, + [46] = {.lex_state = 71, .reserved_word_set_id = 3}, + [47] = {.lex_state = 71, .reserved_word_set_id = 3}, + [48] = {.lex_state = 71, .reserved_word_set_id = 3}, + [49] = {.lex_state = 71, .reserved_word_set_id = 3}, + [50] = {.lex_state = 71, .reserved_word_set_id = 3}, + [51] = {.lex_state = 71, .reserved_word_set_id = 3}, + [52] = {.lex_state = 71, .reserved_word_set_id = 3}, + [53] = {.lex_state = 71, .reserved_word_set_id = 3}, + [54] = {.lex_state = 71, .reserved_word_set_id = 3}, + [55] = {.lex_state = 71, .reserved_word_set_id = 3}, + [56] = {.lex_state = 71, .reserved_word_set_id = 3}, + [57] = {.lex_state = 71, .reserved_word_set_id = 3}, + [58] = {.lex_state = 71, .reserved_word_set_id = 3}, + [59] = {.lex_state = 71, .reserved_word_set_id = 3}, + [60] = {.lex_state = 71, .reserved_word_set_id = 3}, + [61] = {.lex_state = 71, .reserved_word_set_id = 3}, + [62] = {.lex_state = 71, .reserved_word_set_id = 3}, + [63] = {.lex_state = 71, .reserved_word_set_id = 3}, + [64] = {.lex_state = 71, .reserved_word_set_id = 3}, + [65] = {.lex_state = 71, .reserved_word_set_id = 3}, + [66] = {.lex_state = 71, .reserved_word_set_id = 3}, + [67] = {.lex_state = 71, .reserved_word_set_id = 3}, + [68] = {.lex_state = 71, .reserved_word_set_id = 3}, + [69] = {.lex_state = 71, .reserved_word_set_id = 3}, + [70] = {.lex_state = 71, .reserved_word_set_id = 3}, + [71] = {.lex_state = 71, .reserved_word_set_id = 3}, + [72] = {.lex_state = 71, .reserved_word_set_id = 3}, + [73] = {.lex_state = 71, .reserved_word_set_id = 3}, + [74] = {.lex_state = 71, .reserved_word_set_id = 3}, + [75] = {.lex_state = 71, .reserved_word_set_id = 3}, + [76] = {.lex_state = 71, .reserved_word_set_id = 3}, + [77] = {.lex_state = 71, .reserved_word_set_id = 3}, + [78] = {.lex_state = 71, .reserved_word_set_id = 3}, + [79] = {.lex_state = 71, .reserved_word_set_id = 3}, + [80] = {.lex_state = 71, .reserved_word_set_id = 3}, + [81] = {.lex_state = 71, .reserved_word_set_id = 3}, + [82] = {.lex_state = 71, .reserved_word_set_id = 3}, + [83] = {.lex_state = 71, .reserved_word_set_id = 3}, + [84] = {.lex_state = 71, .reserved_word_set_id = 3}, + [85] = {.lex_state = 71, .reserved_word_set_id = 3}, + [86] = {.lex_state = 71, .reserved_word_set_id = 3}, + [87] = {.lex_state = 71, .reserved_word_set_id = 3}, + [88] = {.lex_state = 71, .reserved_word_set_id = 3}, + [89] = {.lex_state = 71, .reserved_word_set_id = 3}, + [90] = {.lex_state = 71, .reserved_word_set_id = 3}, + [91] = {.lex_state = 71, .reserved_word_set_id = 3}, + [92] = {.lex_state = 71, .reserved_word_set_id = 3}, + [93] = {.lex_state = 71, .reserved_word_set_id = 3}, + [94] = {.lex_state = 71, .reserved_word_set_id = 3}, + [95] = {.lex_state = 71, .reserved_word_set_id = 3}, + [96] = {.lex_state = 71, .reserved_word_set_id = 3}, + [97] = {.lex_state = 71, .reserved_word_set_id = 3}, + [98] = {.lex_state = 71, .reserved_word_set_id = 3}, + [99] = {.lex_state = 71, .reserved_word_set_id = 3}, + [100] = {.lex_state = 71, .reserved_word_set_id = 3}, + [101] = {.lex_state = 71, .reserved_word_set_id = 3}, + [102] = {.lex_state = 71, .reserved_word_set_id = 3}, + [103] = {.lex_state = 71, .reserved_word_set_id = 3}, + [104] = {.lex_state = 70, .reserved_word_set_id = 4}, + [105] = {.lex_state = 70, .reserved_word_set_id = 4}, + [106] = {.lex_state = 71, .reserved_word_set_id = 5}, + [107] = {.lex_state = 71, .reserved_word_set_id = 5}, + [108] = {.lex_state = 71, .reserved_word_set_id = 4}, + [109] = {.lex_state = 71, .reserved_word_set_id = 4}, + [110] = {.lex_state = 70, .reserved_word_set_id = 6}, + [111] = {.lex_state = 71, .reserved_word_set_id = 4}, + [112] = {.lex_state = 2, .reserved_word_set_id = 7}, + [113] = {.lex_state = 2, .reserved_word_set_id = 7}, + [114] = {.lex_state = 2, .reserved_word_set_id = 7}, + [115] = {.lex_state = 71, .reserved_word_set_id = 4}, + [116] = {.lex_state = 2, .reserved_word_set_id = 7}, + [117] = {.lex_state = 2, .reserved_word_set_id = 7}, + [118] = {.lex_state = 71, .reserved_word_set_id = 8}, + [119] = {.lex_state = 2, .reserved_word_set_id = 7}, + [120] = {.lex_state = 71, .reserved_word_set_id = 9}, + [121] = {.lex_state = 71, .reserved_word_set_id = 9}, + [122] = {.lex_state = 71, .reserved_word_set_id = 9}, + [123] = {.lex_state = 71, .reserved_word_set_id = 9}, + [124] = {.lex_state = 1, .reserved_word_set_id = 10}, + [125] = {.lex_state = 1, .reserved_word_set_id = 1}, + [126] = {.lex_state = 1, .reserved_word_set_id = 10}, + [127] = {.lex_state = 1, .reserved_word_set_id = 10}, + [128] = {.lex_state = 1, .reserved_word_set_id = 10}, + [129] = {.lex_state = 1, .reserved_word_set_id = 10}, + [130] = {.lex_state = 71, .reserved_word_set_id = 9}, + [131] = {.lex_state = 1, .reserved_word_set_id = 10}, + [132] = {.lex_state = 1, .reserved_word_set_id = 10}, + [133] = {.lex_state = 1, .reserved_word_set_id = 10}, + [134] = {.lex_state = 1, .reserved_word_set_id = 1}, + [135] = {.lex_state = 1, .reserved_word_set_id = 10}, + [136] = {.lex_state = 1, .reserved_word_set_id = 1}, + [137] = {.lex_state = 1, .reserved_word_set_id = 10}, + [138] = {.lex_state = 1, .reserved_word_set_id = 1}, + [139] = {.lex_state = 1, .reserved_word_set_id = 1}, + [140] = {.lex_state = 1, .reserved_word_set_id = 1}, + [141] = {.lex_state = 1, .reserved_word_set_id = 10}, + [142] = {.lex_state = 1, .reserved_word_set_id = 1}, + [143] = {.lex_state = 71, .reserved_word_set_id = 11}, + [144] = {.lex_state = 71, .reserved_word_set_id = 11}, + [145] = {.lex_state = 71, .reserved_word_set_id = 11}, + [146] = {.lex_state = 71, .reserved_word_set_id = 11}, + [147] = {.lex_state = 71, .reserved_word_set_id = 11}, + [148] = {.lex_state = 71, .reserved_word_set_id = 11}, + [149] = {.lex_state = 71, .reserved_word_set_id = 11}, + [150] = {.lex_state = 71, .reserved_word_set_id = 11}, + [151] = {.lex_state = 71, .reserved_word_set_id = 11}, + [152] = {.lex_state = 71, .reserved_word_set_id = 11}, + [153] = {.lex_state = 71, .reserved_word_set_id = 11}, + [154] = {.lex_state = 71, .reserved_word_set_id = 11}, + [155] = {.lex_state = 71, .reserved_word_set_id = 11}, + [156] = {.lex_state = 71, .reserved_word_set_id = 11}, + [157] = {.lex_state = 71, .reserved_word_set_id = 11}, + [158] = {.lex_state = 71, .reserved_word_set_id = 11}, + [159] = {.lex_state = 71, .reserved_word_set_id = 11}, + [160] = {.lex_state = 71, .reserved_word_set_id = 11}, + [161] = {.lex_state = 71, .reserved_word_set_id = 11}, + [162] = {.lex_state = 71, .reserved_word_set_id = 11}, + [163] = {.lex_state = 71, .reserved_word_set_id = 11}, + [164] = {.lex_state = 71, .reserved_word_set_id = 11}, + [165] = {.lex_state = 71, .reserved_word_set_id = 11}, + [166] = {.lex_state = 71, .reserved_word_set_id = 11}, + [167] = {.lex_state = 71, .reserved_word_set_id = 11}, + [168] = {.lex_state = 71, .reserved_word_set_id = 11}, + [169] = {.lex_state = 71, .reserved_word_set_id = 11}, + [170] = {.lex_state = 71, .reserved_word_set_id = 11}, + [171] = {.lex_state = 71, .reserved_word_set_id = 11}, + [172] = {.lex_state = 71, .reserved_word_set_id = 11}, + [173] = {.lex_state = 71, .reserved_word_set_id = 11}, + [174] = {.lex_state = 71, .reserved_word_set_id = 11}, + [175] = {.lex_state = 1, .reserved_word_set_id = 1}, + [176] = {.lex_state = 71, .reserved_word_set_id = 11}, + [177] = {.lex_state = 71, .reserved_word_set_id = 11}, + [178] = {.lex_state = 71, .reserved_word_set_id = 11}, + [179] = {.lex_state = 71, .reserved_word_set_id = 11}, + [180] = {.lex_state = 71, .reserved_word_set_id = 11}, + [181] = {.lex_state = 71, .reserved_word_set_id = 11}, + [182] = {.lex_state = 71, .reserved_word_set_id = 11}, + [183] = {.lex_state = 71, .reserved_word_set_id = 11}, + [184] = {.lex_state = 1, .reserved_word_set_id = 10}, + [185] = {.lex_state = 71, .reserved_word_set_id = 11}, + [186] = {.lex_state = 1, .reserved_word_set_id = 10}, + [187] = {.lex_state = 71, .reserved_word_set_id = 11}, + [188] = {.lex_state = 71, .reserved_word_set_id = 11}, + [189] = {.lex_state = 71, .reserved_word_set_id = 11}, + [190] = {.lex_state = 71, .reserved_word_set_id = 11}, + [191] = {.lex_state = 71, .reserved_word_set_id = 11}, + [192] = {.lex_state = 71, .reserved_word_set_id = 11}, + [193] = {.lex_state = 71, .reserved_word_set_id = 11}, + [194] = {.lex_state = 71, .reserved_word_set_id = 11}, + [195] = {.lex_state = 71, .reserved_word_set_id = 11}, + [196] = {.lex_state = 71, .reserved_word_set_id = 11}, + [197] = {.lex_state = 71, .reserved_word_set_id = 11}, + [198] = {.lex_state = 71, .reserved_word_set_id = 11}, + [199] = {.lex_state = 71, .reserved_word_set_id = 11}, + [200] = {.lex_state = 71, .reserved_word_set_id = 11}, + [201] = {.lex_state = 71, .reserved_word_set_id = 11}, + [202] = {.lex_state = 71, .reserved_word_set_id = 11}, + [203] = {.lex_state = 71, .reserved_word_set_id = 11}, + [204] = {.lex_state = 71, .reserved_word_set_id = 11}, + [205] = {.lex_state = 71, .reserved_word_set_id = 11}, + [206] = {.lex_state = 71, .reserved_word_set_id = 11}, + [207] = {.lex_state = 71, .reserved_word_set_id = 11}, + [208] = {.lex_state = 71, .reserved_word_set_id = 11}, + [209] = {.lex_state = 71, .reserved_word_set_id = 11}, + [210] = {.lex_state = 71, .reserved_word_set_id = 11}, + [211] = {.lex_state = 1, .reserved_word_set_id = 10}, + [212] = {.lex_state = 71, .reserved_word_set_id = 11}, + [213] = {.lex_state = 71, .reserved_word_set_id = 11}, + [214] = {.lex_state = 71, .reserved_word_set_id = 11}, + [215] = {.lex_state = 71, .reserved_word_set_id = 11}, + [216] = {.lex_state = 71, .reserved_word_set_id = 11}, + [217] = {.lex_state = 71, .reserved_word_set_id = 11}, + [218] = {.lex_state = 71, .reserved_word_set_id = 11}, + [219] = {.lex_state = 71, .reserved_word_set_id = 11}, + [220] = {.lex_state = 71, .reserved_word_set_id = 11}, + [221] = {.lex_state = 71, .reserved_word_set_id = 11}, + [222] = {.lex_state = 71, .reserved_word_set_id = 11}, + [223] = {.lex_state = 71, .reserved_word_set_id = 11}, + [224] = {.lex_state = 71, .reserved_word_set_id = 11}, + [225] = {.lex_state = 71, .reserved_word_set_id = 11}, + [226] = {.lex_state = 71, .reserved_word_set_id = 11}, + [227] = {.lex_state = 71, .reserved_word_set_id = 11}, + [228] = {.lex_state = 71, .reserved_word_set_id = 11}, + [229] = {.lex_state = 71, .reserved_word_set_id = 11}, + [230] = {.lex_state = 71, .reserved_word_set_id = 11}, + [231] = {.lex_state = 71, .reserved_word_set_id = 11}, + [232] = {.lex_state = 71, .reserved_word_set_id = 11}, + [233] = {.lex_state = 71, .reserved_word_set_id = 11}, + [234] = {.lex_state = 71, .reserved_word_set_id = 11}, + [235] = {.lex_state = 71, .reserved_word_set_id = 11}, + [236] = {.lex_state = 71, .reserved_word_set_id = 11}, + [237] = {.lex_state = 71, .reserved_word_set_id = 11}, + [238] = {.lex_state = 71, .reserved_word_set_id = 11}, + [239] = {.lex_state = 71, .reserved_word_set_id = 11}, + [240] = {.lex_state = 71, .reserved_word_set_id = 11}, + [241] = {.lex_state = 71, .reserved_word_set_id = 11}, + [242] = {.lex_state = 71, .reserved_word_set_id = 11}, + [243] = {.lex_state = 71, .reserved_word_set_id = 11}, + [244] = {.lex_state = 71, .reserved_word_set_id = 11}, + [245] = {.lex_state = 71, .reserved_word_set_id = 11}, + [246] = {.lex_state = 71, .reserved_word_set_id = 11}, + [247] = {.lex_state = 71, .reserved_word_set_id = 11}, + [248] = {.lex_state = 71, .reserved_word_set_id = 11}, + [249] = {.lex_state = 71, .reserved_word_set_id = 11}, + [250] = {.lex_state = 71, .reserved_word_set_id = 11}, + [251] = {.lex_state = 71, .reserved_word_set_id = 11}, + [252] = {.lex_state = 71, .reserved_word_set_id = 11}, + [253] = {.lex_state = 71, .reserved_word_set_id = 11}, + [254] = {.lex_state = 71, .reserved_word_set_id = 11}, + [255] = {.lex_state = 71, .reserved_word_set_id = 11}, + [256] = {.lex_state = 71, .reserved_word_set_id = 11}, + [257] = {.lex_state = 71, .reserved_word_set_id = 11}, + [258] = {.lex_state = 71, .reserved_word_set_id = 11}, + [259] = {.lex_state = 71, .reserved_word_set_id = 11}, + [260] = {.lex_state = 71, .reserved_word_set_id = 11}, + [261] = {.lex_state = 71, .reserved_word_set_id = 11}, + [262] = {.lex_state = 71, .reserved_word_set_id = 11}, + [263] = {.lex_state = 71, .reserved_word_set_id = 11}, + [264] = {.lex_state = 71, .reserved_word_set_id = 11}, + [265] = {.lex_state = 71, .reserved_word_set_id = 11}, + [266] = {.lex_state = 71, .reserved_word_set_id = 11}, + [267] = {.lex_state = 71, .reserved_word_set_id = 11}, + [268] = {.lex_state = 71, .reserved_word_set_id = 11}, + [269] = {.lex_state = 71, .reserved_word_set_id = 11}, + [270] = {.lex_state = 71, .reserved_word_set_id = 11}, + [271] = {.lex_state = 71, .reserved_word_set_id = 11}, + [272] = {.lex_state = 71, .reserved_word_set_id = 11}, + [273] = {.lex_state = 71, .reserved_word_set_id = 11}, + [274] = {.lex_state = 71, .reserved_word_set_id = 11}, + [275] = {.lex_state = 71, .reserved_word_set_id = 11}, + [276] = {.lex_state = 71, .reserved_word_set_id = 11}, + [277] = {.lex_state = 71, .reserved_word_set_id = 11}, + [278] = {.lex_state = 71, .reserved_word_set_id = 11}, + [279] = {.lex_state = 71, .reserved_word_set_id = 11}, + [280] = {.lex_state = 1, .reserved_word_set_id = 10}, + [281] = {.lex_state = 1, .reserved_word_set_id = 10}, + [282] = {.lex_state = 1, .reserved_word_set_id = 10}, + [283] = {.lex_state = 1, .reserved_word_set_id = 10}, + [284] = {.lex_state = 1, .reserved_word_set_id = 10}, + [285] = {.lex_state = 1, .reserved_word_set_id = 10}, + [286] = {.lex_state = 1, .reserved_word_set_id = 10}, + [287] = {.lex_state = 1, .reserved_word_set_id = 10}, + [288] = {.lex_state = 1, .reserved_word_set_id = 10}, + [289] = {.lex_state = 1, .reserved_word_set_id = 10}, + [290] = {.lex_state = 1, .reserved_word_set_id = 10}, + [291] = {.lex_state = 71, .reserved_word_set_id = 1}, + [292] = {.lex_state = 1, .reserved_word_set_id = 10}, + [293] = {.lex_state = 1, .reserved_word_set_id = 10}, + [294] = {.lex_state = 1, .reserved_word_set_id = 10}, + [295] = {.lex_state = 1, .reserved_word_set_id = 10}, + [296] = {.lex_state = 1, .reserved_word_set_id = 10}, + [297] = {.lex_state = 1, .reserved_word_set_id = 10}, + [298] = {.lex_state = 1, .reserved_word_set_id = 10}, + [299] = {.lex_state = 1, .reserved_word_set_id = 10}, + [300] = {.lex_state = 1, .reserved_word_set_id = 10}, + [301] = {.lex_state = 1, .reserved_word_set_id = 10}, + [302] = {.lex_state = 1, .reserved_word_set_id = 10}, + [303] = {.lex_state = 1, .reserved_word_set_id = 10}, + [304] = {.lex_state = 1, .reserved_word_set_id = 10}, + [305] = {.lex_state = 1, .reserved_word_set_id = 10}, + [306] = {.lex_state = 1, .reserved_word_set_id = 10}, + [307] = {.lex_state = 1, .reserved_word_set_id = 10}, + [308] = {.lex_state = 1, .reserved_word_set_id = 10}, + [309] = {.lex_state = 1, .reserved_word_set_id = 10}, + [310] = {.lex_state = 1, .reserved_word_set_id = 10}, + [311] = {.lex_state = 1, .reserved_word_set_id = 10}, + [312] = {.lex_state = 1, .reserved_word_set_id = 10}, + [313] = {.lex_state = 1, .reserved_word_set_id = 10}, + [314] = {.lex_state = 1, .reserved_word_set_id = 10}, + [315] = {.lex_state = 1, .reserved_word_set_id = 10}, + [316] = {.lex_state = 1, .reserved_word_set_id = 10}, + [317] = {.lex_state = 1, .reserved_word_set_id = 10}, + [318] = {.lex_state = 1, .reserved_word_set_id = 10}, + [319] = {.lex_state = 1, .reserved_word_set_id = 10}, + [320] = {.lex_state = 1, .reserved_word_set_id = 10}, + [321] = {.lex_state = 1, .reserved_word_set_id = 10}, + [322] = {.lex_state = 1, .reserved_word_set_id = 10}, + [323] = {.lex_state = 71, .reserved_word_set_id = 11}, + [324] = {.lex_state = 1, .reserved_word_set_id = 10}, + [325] = {.lex_state = 1, .reserved_word_set_id = 10}, + [326] = {.lex_state = 1, .reserved_word_set_id = 10}, + [327] = {.lex_state = 1, .reserved_word_set_id = 10}, + [328] = {.lex_state = 1, .reserved_word_set_id = 1}, + [329] = {.lex_state = 1, .reserved_word_set_id = 10}, + [330] = {.lex_state = 1, .reserved_word_set_id = 10}, + [331] = {.lex_state = 1, .reserved_word_set_id = 10}, + [332] = {.lex_state = 71, .reserved_word_set_id = 3}, + [333] = {.lex_state = 1, .reserved_word_set_id = 10}, + [334] = {.lex_state = 71, .reserved_word_set_id = 3}, + [335] = {.lex_state = 1, .reserved_word_set_id = 10}, + [336] = {.lex_state = 1, .reserved_word_set_id = 1}, + [337] = {.lex_state = 1, .reserved_word_set_id = 10}, + [338] = {.lex_state = 1, .reserved_word_set_id = 10}, + [339] = {.lex_state = 1, .reserved_word_set_id = 10}, + [340] = {.lex_state = 1, .reserved_word_set_id = 10}, + [341] = {.lex_state = 1, .reserved_word_set_id = 10}, + [342] = {.lex_state = 71, .reserved_word_set_id = 12}, + [343] = {.lex_state = 1, .reserved_word_set_id = 10}, + [344] = {.lex_state = 71, .reserved_word_set_id = 3}, + [345] = {.lex_state = 1, .reserved_word_set_id = 10}, + [346] = {.lex_state = 1, .reserved_word_set_id = 10}, + [347] = {.lex_state = 1, .reserved_word_set_id = 10}, + [348] = {.lex_state = 1, .reserved_word_set_id = 10}, + [349] = {.lex_state = 1, .reserved_word_set_id = 10}, + [350] = {.lex_state = 1, .reserved_word_set_id = 10}, + [351] = {.lex_state = 1, .reserved_word_set_id = 10}, + [352] = {.lex_state = 1, .reserved_word_set_id = 10}, + [353] = {.lex_state = 1, .reserved_word_set_id = 10}, + [354] = {.lex_state = 1, .reserved_word_set_id = 1}, + [355] = {.lex_state = 1, .reserved_word_set_id = 10}, + [356] = {.lex_state = 1, .reserved_word_set_id = 10}, + [357] = {.lex_state = 1, .reserved_word_set_id = 10}, + [358] = {.lex_state = 1, .reserved_word_set_id = 10}, + [359] = {.lex_state = 1, .reserved_word_set_id = 10}, + [360] = {.lex_state = 1, .reserved_word_set_id = 10}, + [361] = {.lex_state = 1, .reserved_word_set_id = 1}, + [362] = {.lex_state = 1, .reserved_word_set_id = 10}, + [363] = {.lex_state = 1, .reserved_word_set_id = 10}, + [364] = {.lex_state = 1, .reserved_word_set_id = 10}, + [365] = {.lex_state = 1, .reserved_word_set_id = 1}, + [366] = {.lex_state = 1, .reserved_word_set_id = 10}, + [367] = {.lex_state = 1, .reserved_word_set_id = 10}, + [368] = {.lex_state = 1, .reserved_word_set_id = 10}, + [369] = {.lex_state = 1, .reserved_word_set_id = 10}, + [370] = {.lex_state = 1, .reserved_word_set_id = 10}, + [371] = {.lex_state = 1, .reserved_word_set_id = 10}, + [372] = {.lex_state = 1, .reserved_word_set_id = 1}, + [373] = {.lex_state = 1, .reserved_word_set_id = 10}, + [374] = {.lex_state = 1, .reserved_word_set_id = 10}, + [375] = {.lex_state = 1, .reserved_word_set_id = 1}, + [376] = {.lex_state = 1, .reserved_word_set_id = 10}, + [377] = {.lex_state = 1, .reserved_word_set_id = 10}, + [378] = {.lex_state = 1, .reserved_word_set_id = 10}, + [379] = {.lex_state = 1, .reserved_word_set_id = 10}, + [380] = {.lex_state = 1, .reserved_word_set_id = 10}, + [381] = {.lex_state = 1, .reserved_word_set_id = 10}, + [382] = {.lex_state = 1, .reserved_word_set_id = 10}, + [383] = {.lex_state = 1, .reserved_word_set_id = 10}, + [384] = {.lex_state = 1, .reserved_word_set_id = 10}, + [385] = {.lex_state = 71, .reserved_word_set_id = 3}, + [386] = {.lex_state = 2, .reserved_word_set_id = 1}, + [387] = {.lex_state = 2, .reserved_word_set_id = 1}, + [388] = {.lex_state = 71, .reserved_word_set_id = 1}, + [389] = {.lex_state = 2, .reserved_word_set_id = 1}, + [390] = {.lex_state = 2, .reserved_word_set_id = 1}, + [391] = {.lex_state = 71, .reserved_word_set_id = 1}, + [392] = {.lex_state = 71, .reserved_word_set_id = 1}, + [393] = {.lex_state = 71, .reserved_word_set_id = 1}, + [394] = {.lex_state = 71, .reserved_word_set_id = 1}, + [395] = {.lex_state = 0, .reserved_word_set_id = 13}, + [396] = {.lex_state = 0, .reserved_word_set_id = 1}, + [397] = {.lex_state = 0, .reserved_word_set_id = 1}, + [398] = {.lex_state = 0, .reserved_word_set_id = 1}, + [399] = {.lex_state = 0, .reserved_word_set_id = 13}, + [400] = {.lex_state = 1, .reserved_word_set_id = 14}, + [401] = {.lex_state = 1, .reserved_word_set_id = 14}, + [402] = {.lex_state = 0, .reserved_word_set_id = 13}, + [403] = {.lex_state = 0, .reserved_word_set_id = 1}, + [404] = {.lex_state = 0, .reserved_word_set_id = 13}, + [405] = {.lex_state = 3, .reserved_word_set_id = 15}, + [406] = {.lex_state = 3, .reserved_word_set_id = 1}, + [407] = {.lex_state = 3, .reserved_word_set_id = 1}, + [408] = {.lex_state = 0, .reserved_word_set_id = 13}, + [409] = {.lex_state = 0, .reserved_word_set_id = 1}, + [410] = {.lex_state = 0, .reserved_word_set_id = 13}, + [411] = {.lex_state = 3, .reserved_word_set_id = 15}, + [412] = {.lex_state = 3}, + [413] = {.lex_state = 3, .reserved_word_set_id = 1}, + [414] = {.lex_state = 3}, + [415] = {.lex_state = 3, .reserved_word_set_id = 1}, + [416] = {.lex_state = 3, .reserved_word_set_id = 15}, + [417] = {.lex_state = 3, .reserved_word_set_id = 15}, + [418] = {.lex_state = 3, .reserved_word_set_id = 15}, + [419] = {.lex_state = 3}, + [420] = {.lex_state = 3}, + [421] = {.lex_state = 3}, + [422] = {.lex_state = 3}, + [423] = {.lex_state = 3}, + [424] = {.lex_state = 3}, + [425] = {.lex_state = 4}, + [426] = {.lex_state = 4}, + [427] = {.lex_state = 4}, + [428] = {.lex_state = 4}, + [429] = {.lex_state = 3}, + [430] = {.lex_state = 2, .reserved_word_set_id = 16}, + [431] = {.lex_state = 11, .reserved_word_set_id = 17}, + [432] = {.lex_state = 4, .reserved_word_set_id = 15}, [433] = {.lex_state = 4}, - [434] = {.lex_state = 1}, - [435] = {.lex_state = 4}, - [436] = {.lex_state = 1}, - [437] = {.lex_state = 1}, - [438] = {.lex_state = 1}, - [439] = {.lex_state = 1}, - [440] = {.lex_state = 1}, - [441] = {.lex_state = 1}, - [442] = {.lex_state = 4}, - [443] = {.lex_state = 1}, - [444] = {.lex_state = 1}, - [445] = {.lex_state = 1}, + [434] = {.lex_state = 4, .reserved_word_set_id = 15}, + [435] = {.lex_state = 1, .reserved_word_set_id = 15}, + [436] = {.lex_state = 1, .reserved_word_set_id = 15}, + [437] = {.lex_state = 2, .reserved_word_set_id = 16}, + [438] = {.lex_state = 2, .reserved_word_set_id = 1}, + [439] = {.lex_state = 4, .reserved_word_set_id = 15}, + [440] = {.lex_state = 2, .reserved_word_set_id = 16}, + [441] = {.lex_state = 4}, + [442] = {.lex_state = 4, .reserved_word_set_id = 15}, + [443] = {.lex_state = 11, .reserved_word_set_id = 17}, + [444] = {.lex_state = 4, .reserved_word_set_id = 15}, + [445] = {.lex_state = 4, .reserved_word_set_id = 15}, [446] = {.lex_state = 4}, [447] = {.lex_state = 4}, [448] = {.lex_state = 4}, - [449] = {.lex_state = 4}, + [449] = {.lex_state = 4, .reserved_word_set_id = 15}, [450] = {.lex_state = 4}, [451] = {.lex_state = 4}, - [452] = {.lex_state = 4}, + [452] = {.lex_state = 4, .reserved_word_set_id = 15}, [453] = {.lex_state = 4}, - [454] = {.lex_state = 1}, - [455] = {.lex_state = 1}, - [456] = {.lex_state = 4}, + [454] = {.lex_state = 4, .reserved_word_set_id = 15}, + [455] = {.lex_state = 4, .reserved_word_set_id = 15}, + [456] = {.lex_state = 4, .reserved_word_set_id = 15}, [457] = {.lex_state = 4}, [458] = {.lex_state = 4}, [459] = {.lex_state = 4}, - [460] = {.lex_state = 4}, + [460] = {.lex_state = 4, .reserved_word_set_id = 15}, [461] = {.lex_state = 4}, - [462] = {.lex_state = 1}, + [462] = {.lex_state = 4}, [463] = {.lex_state = 4}, [464] = {.lex_state = 4}, - [465] = {.lex_state = 1}, + [465] = {.lex_state = 4, .reserved_word_set_id = 15}, [466] = {.lex_state = 4}, - [467] = {.lex_state = 4}, - [468] = {.lex_state = 0}, - [469] = {.lex_state = 4}, - [470] = {.lex_state = 4}, - [471] = {.lex_state = 2}, - [472] = {.lex_state = 1}, - [473] = {.lex_state = 4}, + [467] = {.lex_state = 1, .reserved_word_set_id = 1}, + [468] = {.lex_state = 4}, + [469] = {.lex_state = 0, .reserved_word_set_id = 13}, + [470] = {.lex_state = 4, .reserved_word_set_id = 15}, + [471] = {.lex_state = 4, .reserved_word_set_id = 15}, + [472] = {.lex_state = 4, .reserved_word_set_id = 15}, + [473] = {.lex_state = 1, .reserved_word_set_id = 1}, [474] = {.lex_state = 4}, - [475] = {.lex_state = 4}, - [476] = {.lex_state = 4}, + [475] = {.lex_state = 4, .reserved_word_set_id = 15}, + [476] = {.lex_state = 4, .reserved_word_set_id = 15}, [477] = {.lex_state = 4}, - [478] = {.lex_state = 2}, + [478] = {.lex_state = 4}, [479] = {.lex_state = 4}, - [480] = {.lex_state = 4}, - [481] = {.lex_state = 2}, - [482] = {.lex_state = 2}, + [480] = {.lex_state = 0, .reserved_word_set_id = 13}, + [481] = {.lex_state = 4}, + [482] = {.lex_state = 4}, [483] = {.lex_state = 4}, - [484] = {.lex_state = 0}, + [484] = {.lex_state = 4}, [485] = {.lex_state = 4}, [486] = {.lex_state = 4}, - [487] = {.lex_state = 4}, - [488] = {.lex_state = 4}, + [487] = {.lex_state = 0, .reserved_word_set_id = 1}, + [488] = {.lex_state = 0, .reserved_word_set_id = 1}, [489] = {.lex_state = 4}, [490] = {.lex_state = 4}, [491] = {.lex_state = 4}, [492] = {.lex_state = 4}, - [493] = {.lex_state = 4}, + [493] = {.lex_state = 1, .reserved_word_set_id = 15}, [494] = {.lex_state = 4}, - [495] = {.lex_state = 4}, - [496] = {.lex_state = 4}, + [495] = {.lex_state = 0, .reserved_word_set_id = 1}, + [496] = {.lex_state = 0, .reserved_word_set_id = 1}, [497] = {.lex_state = 4}, [498] = {.lex_state = 4}, [499] = {.lex_state = 4}, [500] = {.lex_state = 4}, - [501] = {.lex_state = 4}, - [502] = {.lex_state = 9}, - [503] = {.lex_state = 9}, + [501] = {.lex_state = 0, .reserved_word_set_id = 1}, + [502] = {.lex_state = 4}, + [503] = {.lex_state = 0, .reserved_word_set_id = 1}, [504] = {.lex_state = 4}, - [505] = {.lex_state = 0}, - [506] = {.lex_state = 4}, - [507] = {.lex_state = 9}, + [505] = {.lex_state = 1, .reserved_word_set_id = 15}, + [506] = {.lex_state = 1, .reserved_word_set_id = 15}, + [507] = {.lex_state = 4}, [508] = {.lex_state = 4}, - [509] = {.lex_state = 0}, - [510] = {.lex_state = 0}, - [511] = {.lex_state = 4}, - [512] = {.lex_state = 4}, + [509] = {.lex_state = 1, .reserved_word_set_id = 15}, + [510] = {.lex_state = 4}, + [511] = {.lex_state = 0, .reserved_word_set_id = 17}, + [512] = {.lex_state = 0, .reserved_word_set_id = 17}, [513] = {.lex_state = 4}, [514] = {.lex_state = 4}, - [515] = {.lex_state = 4}, - [516] = {.lex_state = 4}, + [515] = {.lex_state = 0, .reserved_word_set_id = 17}, + [516] = {.lex_state = 0, .reserved_word_set_id = 17}, [517] = {.lex_state = 4}, [518] = {.lex_state = 4}, [519] = {.lex_state = 4}, [520] = {.lex_state = 4}, [521] = {.lex_state = 4}, - [522] = {.lex_state = 0}, - [523] = {.lex_state = 0}, - [524] = {.lex_state = 0}, + [522] = {.lex_state = 4}, + [523] = {.lex_state = 4}, + [524] = {.lex_state = 4}, [525] = {.lex_state = 4}, [526] = {.lex_state = 4}, [527] = {.lex_state = 4}, @@ -7823,615 +7867,615 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [531] = {.lex_state = 4}, [532] = {.lex_state = 4}, [533] = {.lex_state = 4}, - [534] = {.lex_state = 4}, - [535] = {.lex_state = 0}, - [536] = {.lex_state = 0}, - [537] = {.lex_state = 0}, - [538] = {.lex_state = 0}, - [539] = {.lex_state = 0}, - [540] = {.lex_state = 0}, + [534] = {.lex_state = 0, .reserved_word_set_id = 1}, + [535] = {.lex_state = 0, .reserved_word_set_id = 17}, + [536] = {.lex_state = 0, .reserved_word_set_id = 1}, + [537] = {.lex_state = 0, .reserved_word_set_id = 1}, + [538] = {.lex_state = 0, .reserved_word_set_id = 1}, + [539] = {.lex_state = 0, .reserved_word_set_id = 1}, + [540] = {.lex_state = 4}, [541] = {.lex_state = 4}, [542] = {.lex_state = 4}, [543] = {.lex_state = 4}, [544] = {.lex_state = 4}, [545] = {.lex_state = 4}, - [546] = {.lex_state = 0}, - [547] = {.lex_state = 0}, - [548] = {.lex_state = 0}, - [549] = {.lex_state = 0}, - [550] = {.lex_state = 4}, - [551] = {.lex_state = 4}, - [552] = {.lex_state = 0}, - [553] = {.lex_state = 4}, - [554] = {.lex_state = 4}, - [555] = {.lex_state = 4}, - [556] = {.lex_state = 4}, - [557] = {.lex_state = 4}, - [558] = {.lex_state = 4}, - [559] = {.lex_state = 4}, - [560] = {.lex_state = 4}, - [561] = {.lex_state = 4}, - [562] = {.lex_state = 4}, - [563] = {.lex_state = 4}, - [564] = {.lex_state = 4}, - [565] = {.lex_state = 4}, - [566] = {.lex_state = 4}, - [567] = {.lex_state = 4}, - [568] = {.lex_state = 4}, - [569] = {.lex_state = 4}, - [570] = {.lex_state = 4}, - [571] = {.lex_state = 0}, - [572] = {.lex_state = 4}, - [573] = {.lex_state = 4}, - [574] = {.lex_state = 0}, - [575] = {.lex_state = 4}, - [576] = {.lex_state = 0}, - [577] = {.lex_state = 0}, - [578] = {.lex_state = 0}, - [579] = {.lex_state = 0}, - [580] = {.lex_state = 9}, - [581] = {.lex_state = 4}, - [582] = {.lex_state = 9}, + [546] = {.lex_state = 4}, + [547] = {.lex_state = 4}, + [548] = {.lex_state = 4}, + [549] = {.lex_state = 4}, + [550] = {.lex_state = 0, .reserved_word_set_id = 1}, + [551] = {.lex_state = 0, .reserved_word_set_id = 1}, + [552] = {.lex_state = 0, .reserved_word_set_id = 13}, + [553] = {.lex_state = 0, .reserved_word_set_id = 13}, + [554] = {.lex_state = 0, .reserved_word_set_id = 13}, + [555] = {.lex_state = 1, .reserved_word_set_id = 15}, + [556] = {.lex_state = 1, .reserved_word_set_id = 15}, + [557] = {.lex_state = 1, .reserved_word_set_id = 15}, + [558] = {.lex_state = 1}, + [559] = {.lex_state = 1}, + [560] = {.lex_state = 1}, + [561] = {.lex_state = 1}, + [562] = {.lex_state = 0, .reserved_word_set_id = 1}, + [563] = {.lex_state = 0, .reserved_word_set_id = 1}, + [564] = {.lex_state = 1}, + [565] = {.lex_state = 1}, + [566] = {.lex_state = 1}, + [567] = {.lex_state = 1}, + [568] = {.lex_state = 1}, + [569] = {.lex_state = 1}, + [570] = {.lex_state = 0, .reserved_word_set_id = 1}, + [571] = {.lex_state = 0, .reserved_word_set_id = 1}, + [572] = {.lex_state = 1}, + [573] = {.lex_state = 1}, + [574] = {.lex_state = 1}, + [575] = {.lex_state = 0, .reserved_word_set_id = 1}, + [576] = {.lex_state = 1}, + [577] = {.lex_state = 1}, + [578] = {.lex_state = 0, .reserved_word_set_id = 1}, + [579] = {.lex_state = 0, .reserved_word_set_id = 1}, + [580] = {.lex_state = 1}, + [581] = {.lex_state = 0, .reserved_word_set_id = 1}, + [582] = {.lex_state = 1}, [583] = {.lex_state = 1}, - [584] = {.lex_state = 4}, - [585] = {.lex_state = 4}, - [586] = {.lex_state = 4}, - [587] = {.lex_state = 0}, + [584] = {.lex_state = 1}, + [585] = {.lex_state = 1}, + [586] = {.lex_state = 1}, + [587] = {.lex_state = 1}, [588] = {.lex_state = 1}, - [589] = {.lex_state = 4}, + [589] = {.lex_state = 1}, [590] = {.lex_state = 4}, - [591] = {.lex_state = 0}, - [592] = {.lex_state = 0}, - [593] = {.lex_state = 0}, - [594] = {.lex_state = 0}, - [595] = {.lex_state = 0}, - [596] = {.lex_state = 0}, - [597] = {.lex_state = 0}, + [591] = {.lex_state = 1}, + [592] = {.lex_state = 1}, + [593] = {.lex_state = 1}, + [594] = {.lex_state = 1}, + [595] = {.lex_state = 1}, + [596] = {.lex_state = 1}, + [597] = {.lex_state = 2, .reserved_word_set_id = 16}, [598] = {.lex_state = 4}, - [599] = {.lex_state = 4}, - [600] = {.lex_state = 4}, - [601] = {.lex_state = 4}, - [602] = {.lex_state = 4}, - [603] = {.lex_state = 4}, + [599] = {.lex_state = 2, .reserved_word_set_id = 16}, + [600] = {.lex_state = 9, .reserved_word_set_id = 18}, + [601] = {.lex_state = 9, .reserved_word_set_id = 18}, + [602] = {.lex_state = 9, .reserved_word_set_id = 18}, + [603] = {.lex_state = 12, .reserved_word_set_id = 16}, [604] = {.lex_state = 4}, - [605] = {.lex_state = 4}, - [606] = {.lex_state = 4}, - [607] = {.lex_state = 4}, - [608] = {.lex_state = 4}, - [609] = {.lex_state = 4}, + [605] = {.lex_state = 12, .reserved_word_set_id = 16}, + [606] = {.lex_state = 1}, + [607] = {.lex_state = 1}, + [608] = {.lex_state = 1}, + [609] = {.lex_state = 1}, [610] = {.lex_state = 4}, - [611] = {.lex_state = 4}, - [612] = {.lex_state = 4}, - [613] = {.lex_state = 4}, - [614] = {.lex_state = 4}, - [615] = {.lex_state = 4}, - [616] = {.lex_state = 4}, - [617] = {.lex_state = 4}, - [618] = {.lex_state = 4}, - [619] = {.lex_state = 4}, - [620] = {.lex_state = 4}, - [621] = {.lex_state = 4}, - [622] = {.lex_state = 4}, - [623] = {.lex_state = 2}, - [624] = {.lex_state = 4}, - [625] = {.lex_state = 2}, - [626] = {.lex_state = 4}, - [627] = {.lex_state = 2}, - [628] = {.lex_state = 2}, - [629] = {.lex_state = 4}, - [630] = {.lex_state = 4}, - [631] = {.lex_state = 4}, - [632] = {.lex_state = 4}, - [633] = {.lex_state = 4}, - [634] = {.lex_state = 4}, - [635] = {.lex_state = 4}, - [636] = {.lex_state = 4}, - [637] = {.lex_state = 9}, - [638] = {.lex_state = 4}, + [611] = {.lex_state = 1}, + [612] = {.lex_state = 1}, + [613] = {.lex_state = 1}, + [614] = {.lex_state = 1}, + [615] = {.lex_state = 1}, + [616] = {.lex_state = 1}, + [617] = {.lex_state = 1}, + [618] = {.lex_state = 1}, + [619] = {.lex_state = 1}, + [620] = {.lex_state = 1}, + [621] = {.lex_state = 1}, + [622] = {.lex_state = 1}, + [623] = {.lex_state = 1}, + [624] = {.lex_state = 2, .reserved_word_set_id = 16}, + [625] = {.lex_state = 1}, + [626] = {.lex_state = 9, .reserved_word_set_id = 19}, + [627] = {.lex_state = 1}, + [628] = {.lex_state = 2, .reserved_word_set_id = 16}, + [629] = {.lex_state = 2, .reserved_word_set_id = 16}, + [630] = {.lex_state = 1}, + [631] = {.lex_state = 9, .reserved_word_set_id = 19}, + [632] = {.lex_state = 1}, + [633] = {.lex_state = 9, .reserved_word_set_id = 20}, + [634] = {.lex_state = 1}, + [635] = {.lex_state = 1}, + [636] = {.lex_state = 1}, + [637] = {.lex_state = 1}, + [638] = {.lex_state = 1}, [639] = {.lex_state = 1}, - [640] = {.lex_state = 4}, - [641] = {.lex_state = 4}, - [642] = {.lex_state = 9}, - [643] = {.lex_state = 4}, - [644] = {.lex_state = 4}, - [645] = {.lex_state = 4}, - [646] = {.lex_state = 4}, - [647] = {.lex_state = 4}, - [648] = {.lex_state = 4}, - [649] = {.lex_state = 4}, - [650] = {.lex_state = 4}, + [640] = {.lex_state = 1}, + [641] = {.lex_state = 1}, + [642] = {.lex_state = 1}, + [643] = {.lex_state = 1}, + [644] = {.lex_state = 1}, + [645] = {.lex_state = 1}, + [646] = {.lex_state = 2, .reserved_word_set_id = 16}, + [647] = {.lex_state = 2, .reserved_word_set_id = 21}, + [648] = {.lex_state = 1}, + [649] = {.lex_state = 1}, + [650] = {.lex_state = 1}, [651] = {.lex_state = 1}, - [652] = {.lex_state = 4}, - [653] = {.lex_state = 4}, - [654] = {.lex_state = 9}, - [655] = {.lex_state = 4}, - [656] = {.lex_state = 2}, - [657] = {.lex_state = 4}, - [658] = {.lex_state = 4}, - [659] = {.lex_state = 4}, - [660] = {.lex_state = 4}, - [661] = {.lex_state = 4}, - [662] = {.lex_state = 4}, - [663] = {.lex_state = 2}, - [664] = {.lex_state = 4}, - [665] = {.lex_state = 2}, - [666] = {.lex_state = 2}, - [667] = {.lex_state = 4}, - [668] = {.lex_state = 9}, - [669] = {.lex_state = 4}, - [670] = {.lex_state = 4}, - [671] = {.lex_state = 4}, - [672] = {.lex_state = 4}, - [673] = {.lex_state = 4}, - [674] = {.lex_state = 4}, - [675] = {.lex_state = 4}, - [676] = {.lex_state = 4}, - [677] = {.lex_state = 4}, - [678] = {.lex_state = 4}, - [679] = {.lex_state = 4}, - [680] = {.lex_state = 4}, - [681] = {.lex_state = 4}, - [682] = {.lex_state = 4}, - [683] = {.lex_state = 4}, - [684] = {.lex_state = 4}, - [685] = {.lex_state = 4}, - [686] = {.lex_state = 4}, - [687] = {.lex_state = 4}, - [688] = {.lex_state = 2}, - [689] = {.lex_state = 17}, - [690] = {.lex_state = 4}, - [691] = {.lex_state = 4}, - [692] = {.lex_state = 2}, - [693] = {.lex_state = 9}, - [694] = {.lex_state = 2}, - [695] = {.lex_state = 9}, - [696] = {.lex_state = 9}, - [697] = {.lex_state = 9}, - [698] = {.lex_state = 4}, - [699] = {.lex_state = 4}, - [700] = {.lex_state = 4}, - [701] = {.lex_state = 4}, - [702] = {.lex_state = 9}, - [703] = {.lex_state = 9}, + [652] = {.lex_state = 1}, + [653] = {.lex_state = 9, .reserved_word_set_id = 20}, + [654] = {.lex_state = 1}, + [655] = {.lex_state = 1}, + [656] = {.lex_state = 1}, + [657] = {.lex_state = 1}, + [658] = {.lex_state = 1}, + [659] = {.lex_state = 1}, + [660] = {.lex_state = 1}, + [661] = {.lex_state = 1}, + [662] = {.lex_state = 1}, + [663] = {.lex_state = 1}, + [664] = {.lex_state = 20, .reserved_word_set_id = 1}, + [665] = {.lex_state = 1, .reserved_word_set_id = 1}, + [666] = {.lex_state = 1}, + [667] = {.lex_state = 1}, + [668] = {.lex_state = 1}, + [669] = {.lex_state = 1, .reserved_word_set_id = 22}, + [670] = {.lex_state = 2, .reserved_word_set_id = 21}, + [671] = {.lex_state = 1}, + [672] = {.lex_state = 2, .reserved_word_set_id = 1}, + [673] = {.lex_state = 1}, + [674] = {.lex_state = 1}, + [675] = {.lex_state = 1}, + [676] = {.lex_state = 2, .reserved_word_set_id = 21}, + [677] = {.lex_state = 1}, + [678] = {.lex_state = 1, .reserved_word_set_id = 23}, + [679] = {.lex_state = 1}, + [680] = {.lex_state = 1}, + [681] = {.lex_state = 1}, + [682] = {.lex_state = 1}, + [683] = {.lex_state = 1}, + [684] = {.lex_state = 1}, + [685] = {.lex_state = 1, .reserved_word_set_id = 1}, + [686] = {.lex_state = 1}, + [687] = {.lex_state = 1}, + [688] = {.lex_state = 20, .reserved_word_set_id = 1}, + [689] = {.lex_state = 1}, + [690] = {.lex_state = 1}, + [691] = {.lex_state = 1}, + [692] = {.lex_state = 1}, + [693] = {.lex_state = 1}, + [694] = {.lex_state = 1}, + [695] = {.lex_state = 1, .reserved_word_set_id = 20}, + [696] = {.lex_state = 1}, + [697] = {.lex_state = 1}, + [698] = {.lex_state = 1}, + [699] = {.lex_state = 1}, + [700] = {.lex_state = 1}, + [701] = {.lex_state = 1, .reserved_word_set_id = 20}, + [702] = {.lex_state = 1}, + [703] = {.lex_state = 1}, [704] = {.lex_state = 1}, - [705] = {.lex_state = 4}, + [705] = {.lex_state = 1}, [706] = {.lex_state = 1}, - [707] = {.lex_state = 2}, - [708] = {.lex_state = 4}, - [709] = {.lex_state = 4}, + [707] = {.lex_state = 1}, + [708] = {.lex_state = 1}, + [709] = {.lex_state = 1}, [710] = {.lex_state = 1}, - [711] = {.lex_state = 4}, - [712] = {.lex_state = 4}, - [713] = {.lex_state = 17}, - [714] = {.lex_state = 4}, - [715] = {.lex_state = 9}, + [711] = {.lex_state = 20, .reserved_word_set_id = 1}, + [712] = {.lex_state = 1}, + [713] = {.lex_state = 1}, + [714] = {.lex_state = 1, .reserved_word_set_id = 1}, + [715] = {.lex_state = 1}, [716] = {.lex_state = 1}, - [717] = {.lex_state = 1}, - [718] = {.lex_state = 17}, - [719] = {.lex_state = 4}, - [720] = {.lex_state = 4}, - [721] = {.lex_state = 4}, - [722] = {.lex_state = 4}, - [723] = {.lex_state = 4}, - [724] = {.lex_state = 4}, - [725] = {.lex_state = 4}, - [726] = {.lex_state = 4}, - [727] = {.lex_state = 4}, - [728] = {.lex_state = 4}, - [729] = {.lex_state = 4}, - [730] = {.lex_state = 9}, - [731] = {.lex_state = 9}, - [732] = {.lex_state = 4}, - [733] = {.lex_state = 4}, - [734] = {.lex_state = 1}, - [735] = {.lex_state = 9}, - [736] = {.lex_state = 4}, - [737] = {.lex_state = 4}, - [738] = {.lex_state = 4}, - [739] = {.lex_state = 4}, - [740] = {.lex_state = 4}, - [741] = {.lex_state = 4}, - [742] = {.lex_state = 4}, - [743] = {.lex_state = 4}, - [744] = {.lex_state = 4}, - [745] = {.lex_state = 4}, - [746] = {.lex_state = 4}, - [747] = {.lex_state = 4}, - [748] = {.lex_state = 4}, - [749] = {.lex_state = 4}, - [750] = {.lex_state = 4}, - [751] = {.lex_state = 4}, - [752] = {.lex_state = 9}, - [753] = {.lex_state = 9}, - [754] = {.lex_state = 1}, - [755] = {.lex_state = 1}, - [756] = {.lex_state = 1}, - [757] = {.lex_state = 9}, - [758] = {.lex_state = 1}, - [759] = {.lex_state = 1}, - [760] = {.lex_state = 1}, - [761] = {.lex_state = 1}, - [762] = {.lex_state = 1}, - [763] = {.lex_state = 1}, - [764] = {.lex_state = 1}, - [765] = {.lex_state = 1}, - [766] = {.lex_state = 1}, - [767] = {.lex_state = 2}, - [768] = {.lex_state = 1}, - [769] = {.lex_state = 1}, - [770] = {.lex_state = 1}, - [771] = {.lex_state = 1}, - [772] = {.lex_state = 1}, - [773] = {.lex_state = 17}, - [774] = {.lex_state = 1}, - [775] = {.lex_state = 1}, - [776] = {.lex_state = 1}, - [777] = {.lex_state = 1}, - [778] = {.lex_state = 1}, - [779] = {.lex_state = 1}, - [780] = {.lex_state = 1}, - [781] = {.lex_state = 1}, - [782] = {.lex_state = 1}, - [783] = {.lex_state = 1}, - [784] = {.lex_state = 1}, - [785] = {.lex_state = 1}, - [786] = {.lex_state = 1}, - [787] = {.lex_state = 1}, - [788] = {.lex_state = 1}, - [789] = {.lex_state = 1}, - [790] = {.lex_state = 1}, - [791] = {.lex_state = 1}, - [792] = {.lex_state = 1}, - [793] = {.lex_state = 1}, - [794] = {.lex_state = 1}, - [795] = {.lex_state = 1}, - [796] = {.lex_state = 1}, - [797] = {.lex_state = 1}, - [798] = {.lex_state = 1}, - [799] = {.lex_state = 1}, - [800] = {.lex_state = 1}, - [801] = {.lex_state = 1}, - [802] = {.lex_state = 17}, - [803] = {.lex_state = 1}, + [717] = {.lex_state = 1, .reserved_word_set_id = 20}, + [718] = {.lex_state = 1, .reserved_word_set_id = 1}, + [719] = {.lex_state = 1, .reserved_word_set_id = 1}, + [720] = {.lex_state = 1, .reserved_word_set_id = 20}, + [721] = {.lex_state = 1, .reserved_word_set_id = 1}, + [722] = {.lex_state = 1, .reserved_word_set_id = 1}, + [723] = {.lex_state = 1, .reserved_word_set_id = 1}, + [724] = {.lex_state = 3, .reserved_word_set_id = 23}, + [725] = {.lex_state = 3, .reserved_word_set_id = 23}, + [726] = {.lex_state = 2, .reserved_word_set_id = 1}, + [727] = {.lex_state = 1, .reserved_word_set_id = 1}, + [728] = {.lex_state = 1, .reserved_word_set_id = 1}, + [729] = {.lex_state = 1, .reserved_word_set_id = 20}, + [730] = {.lex_state = 1, .reserved_word_set_id = 20}, + [731] = {.lex_state = 1, .reserved_word_set_id = 1}, + [732] = {.lex_state = 1, .reserved_word_set_id = 20}, + [733] = {.lex_state = 1, .reserved_word_set_id = 20}, + [734] = {.lex_state = 1, .reserved_word_set_id = 1}, + [735] = {.lex_state = 1, .reserved_word_set_id = 20}, + [736] = {.lex_state = 20, .reserved_word_set_id = 24}, + [737] = {.lex_state = 1, .reserved_word_set_id = 20}, + [738] = {.lex_state = 1, .reserved_word_set_id = 20}, + [739] = {.lex_state = 9, .reserved_word_set_id = 19}, + [740] = {.lex_state = 1, .reserved_word_set_id = 1}, + [741] = {.lex_state = 1, .reserved_word_set_id = 1}, + [742] = {.lex_state = 1, .reserved_word_set_id = 1}, + [743] = {.lex_state = 9, .reserved_word_set_id = 19}, + [744] = {.lex_state = 1, .reserved_word_set_id = 20}, + [745] = {.lex_state = 1, .reserved_word_set_id = 23}, + [746] = {.lex_state = 20, .reserved_word_set_id = 1}, + [747] = {.lex_state = 1, .reserved_word_set_id = 23}, + [748] = {.lex_state = 1, .reserved_word_set_id = 23}, + [749] = {.lex_state = 1, .reserved_word_set_id = 23}, + [750] = {.lex_state = 1, .reserved_word_set_id = 23}, + [751] = {.lex_state = 9, .reserved_word_set_id = 25}, + [752] = {.lex_state = 1, .reserved_word_set_id = 20}, + [753] = {.lex_state = 1, .reserved_word_set_id = 20}, + [754] = {.lex_state = 1, .reserved_word_set_id = 1}, + [755] = {.lex_state = 1, .reserved_word_set_id = 20}, + [756] = {.lex_state = 9, .reserved_word_set_id = 25}, + [757] = {.lex_state = 9, .reserved_word_set_id = 25}, + [758] = {.lex_state = 9, .reserved_word_set_id = 25}, + [759] = {.lex_state = 9, .reserved_word_set_id = 25}, + [760] = {.lex_state = 9, .reserved_word_set_id = 25}, + [761] = {.lex_state = 1, .reserved_word_set_id = 20}, + [762] = {.lex_state = 9, .reserved_word_set_id = 25}, + [763] = {.lex_state = 9, .reserved_word_set_id = 25}, + [764] = {.lex_state = 9, .reserved_word_set_id = 25}, + [765] = {.lex_state = 9, .reserved_word_set_id = 25}, + [766] = {.lex_state = 3, .reserved_word_set_id = 26}, + [767] = {.lex_state = 9}, + [768] = {.lex_state = 9, .reserved_word_set_id = 25}, + [769] = {.lex_state = 9, .reserved_word_set_id = 25}, + [770] = {.lex_state = 1, .reserved_word_set_id = 1}, + [771] = {.lex_state = 9, .reserved_word_set_id = 25}, + [772] = {.lex_state = 1, .reserved_word_set_id = 27}, + [773] = {.lex_state = 9}, + [774] = {.lex_state = 1, .reserved_word_set_id = 1}, + [775] = {.lex_state = 1, .reserved_word_set_id = 1}, + [776] = {.lex_state = 1, .reserved_word_set_id = 20}, + [777] = {.lex_state = 3, .reserved_word_set_id = 1}, + [778] = {.lex_state = 1, .reserved_word_set_id = 27}, + [779] = {.lex_state = 1, .reserved_word_set_id = 1}, + [780] = {.lex_state = 1, .reserved_word_set_id = 20}, + [781] = {.lex_state = 1, .reserved_word_set_id = 20}, + [782] = {.lex_state = 3, .reserved_word_set_id = 1}, + [783] = {.lex_state = 3, .reserved_word_set_id = 1}, + [784] = {.lex_state = 3}, + [785] = {.lex_state = 3}, + [786] = {.lex_state = 1, .reserved_word_set_id = 20}, + [787] = {.lex_state = 3}, + [788] = {.lex_state = 3}, + [789] = {.lex_state = 3}, + [790] = {.lex_state = 3}, + [791] = {.lex_state = 3, .reserved_word_set_id = 1}, + [792] = {.lex_state = 3}, + [793] = {.lex_state = 3}, + [794] = {.lex_state = 3, .reserved_word_set_id = 1}, + [795] = {.lex_state = 1, .reserved_word_set_id = 1}, + [796] = {.lex_state = 1, .reserved_word_set_id = 26}, + [797] = {.lex_state = 1, .reserved_word_set_id = 1}, + [798] = {.lex_state = 1, .reserved_word_set_id = 1}, + [799] = {.lex_state = 1, .reserved_word_set_id = 1}, + [800] = {.lex_state = 1, .reserved_word_set_id = 1}, + [801] = {.lex_state = 1, .reserved_word_set_id = 1}, + [802] = {.lex_state = 3}, + [803] = {.lex_state = 3}, [804] = {.lex_state = 1}, - [805] = {.lex_state = 1}, - [806] = {.lex_state = 1}, - [807] = {.lex_state = 1}, - [808] = {.lex_state = 1}, - [809] = {.lex_state = 1}, + [805] = {.lex_state = 3, .reserved_word_set_id = 1}, + [806] = {.lex_state = 2}, + [807] = {.lex_state = 1, .reserved_word_set_id = 1}, + [808] = {.lex_state = 1, .reserved_word_set_id = 1}, + [809] = {.lex_state = 1, .reserved_word_set_id = 1}, [810] = {.lex_state = 1}, - [811] = {.lex_state = 1}, - [812] = {.lex_state = 1}, + [811] = {.lex_state = 1, .reserved_word_set_id = 1}, + [812] = {.lex_state = 2}, [813] = {.lex_state = 1}, - [814] = {.lex_state = 1}, - [815] = {.lex_state = 1}, - [816] = {.lex_state = 1}, - [817] = {.lex_state = 1}, - [818] = {.lex_state = 1}, - [819] = {.lex_state = 1}, - [820] = {.lex_state = 1}, - [821] = {.lex_state = 1}, - [822] = {.lex_state = 1}, - [823] = {.lex_state = 1}, - [824] = {.lex_state = 1}, - [825] = {.lex_state = 1}, - [826] = {.lex_state = 9}, - [827] = {.lex_state = 1}, - [828] = {.lex_state = 1}, - [829] = {.lex_state = 1}, - [830] = {.lex_state = 1}, - [831] = {.lex_state = 1}, - [832] = {.lex_state = 1}, - [833] = {.lex_state = 1}, - [834] = {.lex_state = 9}, - [835] = {.lex_state = 1}, - [836] = {.lex_state = 1}, - [837] = {.lex_state = 1}, - [838] = {.lex_state = 1}, - [839] = {.lex_state = 1}, + [814] = {.lex_state = 3}, + [815] = {.lex_state = 1, .reserved_word_set_id = 1}, + [816] = {.lex_state = 3}, + [817] = {.lex_state = 1, .reserved_word_set_id = 1}, + [818] = {.lex_state = 1, .reserved_word_set_id = 28}, + [819] = {.lex_state = 3}, + [820] = {.lex_state = 2}, + [821] = {.lex_state = 2}, + [822] = {.lex_state = 1, .reserved_word_set_id = 1}, + [823] = {.lex_state = 1, .reserved_word_set_id = 1}, + [824] = {.lex_state = 3}, + [825] = {.lex_state = 1, .reserved_word_set_id = 28}, + [826] = {.lex_state = 3, .reserved_word_set_id = 1}, + [827] = {.lex_state = 3}, + [828] = {.lex_state = 3}, + [829] = {.lex_state = 2}, + [830] = {.lex_state = 2}, + [831] = {.lex_state = 3, .reserved_word_set_id = 26}, + [832] = {.lex_state = 1, .reserved_word_set_id = 1}, + [833] = {.lex_state = 1, .reserved_word_set_id = 1}, + [834] = {.lex_state = 2}, + [835] = {.lex_state = 2}, + [836] = {.lex_state = 1, .reserved_word_set_id = 1}, + [837] = {.lex_state = 3, .reserved_word_set_id = 1}, + [838] = {.lex_state = 3}, + [839] = {.lex_state = 3, .reserved_word_set_id = 1}, [840] = {.lex_state = 1}, - [841] = {.lex_state = 1}, + [841] = {.lex_state = 1, .reserved_word_set_id = 1}, [842] = {.lex_state = 1}, - [843] = {.lex_state = 1}, - [844] = {.lex_state = 1}, - [845] = {.lex_state = 1}, + [843] = {.lex_state = 3, .reserved_word_set_id = 1}, + [844] = {.lex_state = 3, .reserved_word_set_id = 1}, + [845] = {.lex_state = 1, .reserved_word_set_id = 1}, [846] = {.lex_state = 1}, - [847] = {.lex_state = 1}, - [848] = {.lex_state = 1}, - [849] = {.lex_state = 1}, - [850] = {.lex_state = 1}, - [851] = {.lex_state = 1}, - [852] = {.lex_state = 1}, - [853] = {.lex_state = 1}, + [847] = {.lex_state = 1, .reserved_word_set_id = 1}, + [848] = {.lex_state = 6}, + [849] = {.lex_state = 3}, + [850] = {.lex_state = 1, .reserved_word_set_id = 1}, + [851] = {.lex_state = 6}, + [852] = {.lex_state = 6}, + [853] = {.lex_state = 3, .reserved_word_set_id = 26}, [854] = {.lex_state = 1}, [855] = {.lex_state = 1}, [856] = {.lex_state = 1}, - [857] = {.lex_state = 1}, - [858] = {.lex_state = 1}, + [857] = {.lex_state = 1, .reserved_word_set_id = 1}, + [858] = {.lex_state = 9}, [859] = {.lex_state = 1}, [860] = {.lex_state = 1}, - [861] = {.lex_state = 1}, - [862] = {.lex_state = 1}, + [861] = {.lex_state = 3, .reserved_word_set_id = 1}, + [862] = {.lex_state = 3, .reserved_word_set_id = 1}, [863] = {.lex_state = 1}, [864] = {.lex_state = 1}, [865] = {.lex_state = 1}, - [866] = {.lex_state = 1}, - [867] = {.lex_state = 1}, + [866] = {.lex_state = 3, .reserved_word_set_id = 1}, + [867] = {.lex_state = 1, .reserved_word_set_id = 1}, [868] = {.lex_state = 1}, [869] = {.lex_state = 1}, [870] = {.lex_state = 1}, - [871] = {.lex_state = 1}, - [872] = {.lex_state = 1}, + [871] = {.lex_state = 0}, + [872] = {.lex_state = 1, .reserved_word_set_id = 1}, [873] = {.lex_state = 1}, [874] = {.lex_state = 1}, - [875] = {.lex_state = 1}, + [875] = {.lex_state = 0}, [876] = {.lex_state = 1}, [877] = {.lex_state = 1}, - [878] = {.lex_state = 1}, - [879] = {.lex_state = 1}, + [878] = {.lex_state = 6}, + [879] = {.lex_state = 8}, [880] = {.lex_state = 1}, - [881] = {.lex_state = 1}, - [882] = {.lex_state = 1}, - [883] = {.lex_state = 1}, - [884] = {.lex_state = 1}, + [881] = {.lex_state = 1, .reserved_word_set_id = 1}, + [882] = {.lex_state = 3, .reserved_word_set_id = 1}, + [883] = {.lex_state = 1, .reserved_word_set_id = 1}, + [884] = {.lex_state = 1, .reserved_word_set_id = 1}, [885] = {.lex_state = 1}, [886] = {.lex_state = 1}, - [887] = {.lex_state = 6}, + [887] = {.lex_state = 8}, [888] = {.lex_state = 1}, [889] = {.lex_state = 1}, [890] = {.lex_state = 1}, [891] = {.lex_state = 1}, [892] = {.lex_state = 1}, - [893] = {.lex_state = 6}, - [894] = {.lex_state = 1}, + [893] = {.lex_state = 1, .reserved_word_set_id = 1}, + [894] = {.lex_state = 1, .reserved_word_set_id = 1}, [895] = {.lex_state = 1}, - [896] = {.lex_state = 6}, + [896] = {.lex_state = 2}, [897] = {.lex_state = 1}, - [898] = {.lex_state = 1}, - [899] = {.lex_state = 1}, - [900] = {.lex_state = 1}, + [898] = {.lex_state = 2}, + [899] = {.lex_state = 1, .reserved_word_set_id = 1}, + [900] = {.lex_state = 2}, [901] = {.lex_state = 1}, - [902] = {.lex_state = 1}, - [903] = {.lex_state = 1}, - [904] = {.lex_state = 1}, - [905] = {.lex_state = 1}, - [906] = {.lex_state = 9}, + [902] = {.lex_state = 1, .reserved_word_set_id = 1}, + [903] = {.lex_state = 1, .reserved_word_set_id = 1}, + [904] = {.lex_state = 8}, + [905] = {.lex_state = 6}, + [906] = {.lex_state = 1}, [907] = {.lex_state = 1}, - [908] = {.lex_state = 1}, + [908] = {.lex_state = 1, .reserved_word_set_id = 1}, [909] = {.lex_state = 1}, [910] = {.lex_state = 1}, [911] = {.lex_state = 1}, [912] = {.lex_state = 1}, [913] = {.lex_state = 1}, [914] = {.lex_state = 1}, - [915] = {.lex_state = 1}, - [916] = {.lex_state = 1}, - [917] = {.lex_state = 1}, + [915] = {.lex_state = 2}, + [916] = {.lex_state = 1, .reserved_word_set_id = 1}, + [917] = {.lex_state = 1, .reserved_word_set_id = 1}, [918] = {.lex_state = 1}, - [919] = {.lex_state = 1}, + [919] = {.lex_state = 2}, [920] = {.lex_state = 1}, - [921] = {.lex_state = 1}, - [922] = {.lex_state = 1}, - [923] = {.lex_state = 1}, - [924] = {.lex_state = 1}, - [925] = {.lex_state = 1}, - [926] = {.lex_state = 1}, - [927] = {.lex_state = 1}, - [928] = {.lex_state = 1}, + [921] = {.lex_state = 2}, + [922] = {.lex_state = 3}, + [923] = {.lex_state = 0}, + [924] = {.lex_state = 1, .reserved_word_set_id = 1}, + [925] = {.lex_state = 3}, + [926] = {.lex_state = 3}, + [927] = {.lex_state = 0}, + [928] = {.lex_state = 1, .reserved_word_set_id = 29}, [929] = {.lex_state = 0}, [930] = {.lex_state = 1}, - [931] = {.lex_state = 1}, - [932] = {.lex_state = 0}, + [931] = {.lex_state = 3}, + [932] = {.lex_state = 1}, [933] = {.lex_state = 1}, - [934] = {.lex_state = 1}, - [935] = {.lex_state = 1}, + [934] = {.lex_state = 3}, + [935] = {.lex_state = 3}, [936] = {.lex_state = 1}, - [937] = {.lex_state = 8}, - [938] = {.lex_state = 1}, - [939] = {.lex_state = 1}, - [940] = {.lex_state = 1}, - [941] = {.lex_state = 1}, - [942] = {.lex_state = 1}, + [937] = {.lex_state = 1, .reserved_word_set_id = 29}, + [938] = {.lex_state = 3}, + [939] = {.lex_state = 3}, + [940] = {.lex_state = 3}, + [941] = {.lex_state = 0}, + [942] = {.lex_state = 9}, [943] = {.lex_state = 1}, - [944] = {.lex_state = 1}, - [945] = {.lex_state = 1}, - [946] = {.lex_state = 1}, - [947] = {.lex_state = 1}, - [948] = {.lex_state = 1}, - [949] = {.lex_state = 1}, - [950] = {.lex_state = 1}, - [951] = {.lex_state = 1}, - [952] = {.lex_state = 1}, - [953] = {.lex_state = 1}, - [954] = {.lex_state = 1}, + [944] = {.lex_state = 3}, + [945] = {.lex_state = 0}, + [946] = {.lex_state = 9}, + [947] = {.lex_state = 3}, + [948] = {.lex_state = 3}, + [949] = {.lex_state = 3}, + [950] = {.lex_state = 0}, + [951] = {.lex_state = 9}, + [952] = {.lex_state = 0}, + [953] = {.lex_state = 1, .reserved_word_set_id = 1}, + [954] = {.lex_state = 0}, [955] = {.lex_state = 1}, - [956] = {.lex_state = 8}, - [957] = {.lex_state = 1}, + [956] = {.lex_state = 1}, + [957] = {.lex_state = 2}, [958] = {.lex_state = 1}, - [959] = {.lex_state = 1}, - [960] = {.lex_state = 8}, - [961] = {.lex_state = 1}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 1}, + [961] = {.lex_state = 0}, [962] = {.lex_state = 1}, - [963] = {.lex_state = 1}, - [964] = {.lex_state = 1}, + [963] = {.lex_state = 1, .reserved_word_set_id = 26}, + [964] = {.lex_state = 2}, [965] = {.lex_state = 1}, [966] = {.lex_state = 1}, - [967] = {.lex_state = 1}, - [968] = {.lex_state = 6}, + [967] = {.lex_state = 0}, + [968] = {.lex_state = 1}, [969] = {.lex_state = 1}, - [970] = {.lex_state = 1}, + [970] = {.lex_state = 1, .reserved_word_set_id = 1}, [971] = {.lex_state = 1}, [972] = {.lex_state = 1}, - [973] = {.lex_state = 1}, - [974] = {.lex_state = 1}, + [973] = {.lex_state = 0}, + [974] = {.lex_state = 2}, [975] = {.lex_state = 1}, - [976] = {.lex_state = 1}, - [977] = {.lex_state = 1}, + [976] = {.lex_state = 9}, + [977] = {.lex_state = 0}, [978] = {.lex_state = 1}, - [979] = {.lex_state = 6}, - [980] = {.lex_state = 9}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 1, .reserved_word_set_id = 26}, [981] = {.lex_state = 1}, [982] = {.lex_state = 1}, [983] = {.lex_state = 1}, - [984] = {.lex_state = 0}, + [984] = {.lex_state = 1}, [985] = {.lex_state = 0}, [986] = {.lex_state = 1}, - [987] = {.lex_state = 9}, - [988] = {.lex_state = 1}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 0}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 0}, - [995] = {.lex_state = 0}, - [996] = {.lex_state = 0}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, + [987] = {.lex_state = 1}, + [988] = {.lex_state = 1, .reserved_word_set_id = 30}, + [989] = {.lex_state = 3}, + [990] = {.lex_state = 8}, + [991] = {.lex_state = 1}, + [992] = {.lex_state = 1, .reserved_word_set_id = 1}, + [993] = {.lex_state = 1}, + [994] = {.lex_state = 1, .reserved_word_set_id = 1}, + [995] = {.lex_state = 1}, + [996] = {.lex_state = 1}, + [997] = {.lex_state = 1}, + [998] = {.lex_state = 1}, + [999] = {.lex_state = 1}, [1000] = {.lex_state = 0}, [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 0}, + [1002] = {.lex_state = 1, .reserved_word_set_id = 1}, [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 1}, - [1007] = {.lex_state = 1}, - [1008] = {.lex_state = 0}, + [1005] = {.lex_state = 3}, + [1006] = {.lex_state = 3}, + [1007] = {.lex_state = 3}, + [1008] = {.lex_state = 1}, [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 1}, + [1010] = {.lex_state = 0}, [1011] = {.lex_state = 0}, [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 1}, - [1014] = {.lex_state = 1}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 1}, + [1013] = {.lex_state = 0}, + [1014] = {.lex_state = 0}, + [1015] = {.lex_state = 3}, + [1016] = {.lex_state = 0}, [1017] = {.lex_state = 1}, - [1018] = {.lex_state = 1}, - [1019] = {.lex_state = 1}, - [1020] = {.lex_state = 1}, - [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 9}, - [1023] = {.lex_state = 1}, - [1024] = {.lex_state = 1}, + [1018] = {.lex_state = 0}, + [1019] = {.lex_state = 0}, + [1020] = {.lex_state = 0}, + [1021] = {.lex_state = 3}, + [1022] = {.lex_state = 2}, + [1023] = {.lex_state = 0}, + [1024] = {.lex_state = 2}, [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 9}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 1}, + [1026] = {.lex_state = 0}, + [1027] = {.lex_state = 2}, + [1028] = {.lex_state = 0}, [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 1}, - [1031] = {.lex_state = 0}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 3}, [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 8}, - [1034] = {.lex_state = 1}, - [1035] = {.lex_state = 1}, - [1036] = {.lex_state = 1}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 1}, - [1039] = {.lex_state = 9}, + [1033] = {.lex_state = 0}, + [1034] = {.lex_state = 0}, + [1035] = {.lex_state = 0}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 1}, + [1038] = {.lex_state = 0}, + [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0}, + [1041] = {.lex_state = 3}, [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 1}, + [1044] = {.lex_state = 3}, [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 1}, - [1047] = {.lex_state = 1}, - [1048] = {.lex_state = 1}, - [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 9}, - [1051] = {.lex_state = 1}, - [1052] = {.lex_state = 1}, - [1053] = {.lex_state = 1}, - [1054] = {.lex_state = 9}, - [1055] = {.lex_state = 1}, + [1046] = {.lex_state = 2}, + [1047] = {.lex_state = 2}, + [1048] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1049] = {.lex_state = 3}, + [1050] = {.lex_state = 2}, + [1051] = {.lex_state = 0}, + [1052] = {.lex_state = 0}, + [1053] = {.lex_state = 3}, + [1054] = {.lex_state = 2}, + [1055] = {.lex_state = 2}, [1056] = {.lex_state = 0}, [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, + [1058] = {.lex_state = 1}, [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 1}, - [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 1}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0}, - [1065] = {.lex_state = 0}, + [1060] = {.lex_state = 3}, + [1061] = {.lex_state = 3}, + [1062] = {.lex_state = 3}, + [1063] = {.lex_state = 3}, + [1064] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1065] = {.lex_state = 1, .reserved_word_set_id = 1}, [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 0}, + [1068] = {.lex_state = 1}, [1069] = {.lex_state = 0}, [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 9}, + [1071] = {.lex_state = 1}, + [1072] = {.lex_state = 0}, [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 1}, + [1074] = {.lex_state = 2}, [1075] = {.lex_state = 0}, [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 9}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 1}, - [1081] = {.lex_state = 1}, - [1082] = {.lex_state = 9}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1079] = {.lex_state = 1}, + [1080] = {.lex_state = 0}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 1}, [1083] = {.lex_state = 0}, [1084] = {.lex_state = 0}, [1085] = {.lex_state = 0}, [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 9}, - [1088] = {.lex_state = 9}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 0}, [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 1}, - [1092] = {.lex_state = 1}, + [1090] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1091] = {.lex_state = 0}, + [1092] = {.lex_state = 0}, [1093] = {.lex_state = 0}, [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 9}, + [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 9}, - [1099] = {.lex_state = 9}, - [1100] = {.lex_state = 1}, + [1098] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1099] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1100] = {.lex_state = 0}, [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 1}, + [1102] = {.lex_state = 0}, [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, + [1104] = {.lex_state = 3}, + [1105] = {.lex_state = 3}, + [1106] = {.lex_state = 1, .reserved_word_set_id = 31}, [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 1}, + [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 1}, + [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 0}, + [1117] = {.lex_state = 1}, + [1118] = {.lex_state = 1, .reserved_word_set_id = 1}, [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 1}, - [1122] = {.lex_state = 9}, + [1121] = {.lex_state = 0}, + [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, [1124] = {.lex_state = 0}, [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0}, + [1126] = {.lex_state = 3}, + [1127] = {.lex_state = 3}, + [1128] = {.lex_state = 1, .reserved_word_set_id = 1}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 1}, + [1130] = {.lex_state = 0}, [1131] = {.lex_state = 0}, [1132] = {.lex_state = 1}, [1133] = {.lex_state = 0}, - [1134] = {.lex_state = 0}, + [1134] = {.lex_state = 2}, [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, + [1136] = {.lex_state = 1, .reserved_word_set_id = 1}, [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, [1139] = {.lex_state = 0}, [1140] = {.lex_state = 0}, [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 0}, + [1142] = {.lex_state = 2}, [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, @@ -8445,43 +8489,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, + [1156] = {.lex_state = 3}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 0}, + [1159] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1160] = {.lex_state = 1, .reserved_word_set_id = 1}, [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0}, + [1163] = {.lex_state = 1, .reserved_word_set_id = 1}, [1164] = {.lex_state = 1}, [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, + [1166] = {.lex_state = 3}, [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 1}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 1}, - [1172] = {.lex_state = 0}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1170] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1171] = {.lex_state = 3}, + [1172] = {.lex_state = 1, .reserved_word_set_id = 1}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 0}, + [1175] = {.lex_state = 3}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, + [1179] = {.lex_state = 1, .reserved_word_set_id = 1}, [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, + [1184] = {.lex_state = 2}, [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 0}, + [1186] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1187] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1188] = {.lex_state = 3}, + [1189] = {.lex_state = 1, .reserved_word_set_id = 1}, [1190] = {.lex_state = 0}, [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0}, + [1192] = {.lex_state = 1}, [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, [1195] = {.lex_state = 0}, @@ -8491,75 +8535,75 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1199] = {.lex_state = 0}, [1200] = {.lex_state = 0}, [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 1}, - [1203] = {.lex_state = 1}, - [1204] = {.lex_state = 0}, + [1202] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 1}, [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, + [1206] = {.lex_state = 1, .reserved_word_set_id = 30}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 0}, + [1211] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1212] = {.lex_state = 1, .reserved_word_set_id = 1}, [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 0}, + [1214] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1215] = {.lex_state = 1, .reserved_word_set_id = 1}, [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, + [1217] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1218] = {.lex_state = 1, .reserved_word_set_id = 1}, [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 0}, + [1222] = {.lex_state = 3}, [1223] = {.lex_state = 0}, [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 1}, + [1225] = {.lex_state = 1, .reserved_word_set_id = 1}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 9}, + [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 1}, + [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 9}, + [1231] = {.lex_state = 1}, + [1232] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1233] = {.lex_state = 3}, + [1234] = {.lex_state = 3}, [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 1}, + [1236] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 0}, + [1239] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1240] = {.lex_state = 1, .reserved_word_set_id = 1}, [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 0}, + [1242] = {.lex_state = 1}, [1243] = {.lex_state = 0}, [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 1}, + [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 9}, + [1247] = {.lex_state = 0}, [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 1}, - [1251] = {.lex_state = 1}, - [1252] = {.lex_state = 9}, + [1250] = {.lex_state = 3}, + [1251] = {.lex_state = 2}, + [1252] = {.lex_state = 2}, [1253] = {.lex_state = 0}, [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 9}, - [1257] = {.lex_state = 0}, + [1255] = {.lex_state = 2}, + [1256] = {.lex_state = 0}, + [1257] = {.lex_state = 3}, [1258] = {.lex_state = 0}, [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 0}, + [1260] = {.lex_state = 2}, [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 1}, - [1263] = {.lex_state = 1}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 9}, + [1267] = {.lex_state = 0}, [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 1}, - [1270] = {.lex_state = 0}, + [1269] = {.lex_state = 0}, + [1270] = {.lex_state = 3}, [1271] = {.lex_state = 0}, [1272] = {.lex_state = 0}, [1273] = {.lex_state = 0}, @@ -8573,65 +8617,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1281] = {.lex_state = 0}, [1282] = {.lex_state = 0}, [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, + [1284] = {.lex_state = 1, .reserved_word_set_id = 1}, [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 9}, + [1287] = {.lex_state = 0}, [1288] = {.lex_state = 0}, [1289] = {.lex_state = 0}, [1290] = {.lex_state = 0}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, + [1292] = {.lex_state = 3}, [1293] = {.lex_state = 0}, [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 1}, - [1296] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 1, .reserved_word_set_id = 1}, [1297] = {.lex_state = 0}, [1298] = {.lex_state = 0}, [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 1}, - [1303] = {.lex_state = 1}, + [1300] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1301] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1302] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1303] = {.lex_state = 1, .reserved_word_set_id = 1}, [1304] = {.lex_state = 1}, - [1305] = {.lex_state = 0}, + [1305] = {.lex_state = 1}, [1306] = {.lex_state = 0}, [1307] = {.lex_state = 0}, [1308] = {.lex_state = 0}, [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 1}, + [1311] = {.lex_state = 1, .reserved_word_set_id = 1}, [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 0}, + [1315] = {.lex_state = 1}, + [1316] = {.lex_state = 1, .reserved_word_set_id = 1}, [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 1}, + [1318] = {.lex_state = 3}, [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0}, + [1320] = {.lex_state = 1, .reserved_word_set_id = 1}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 1}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1325] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1326] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1327] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1328] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1329] = {.lex_state = 1, .reserved_word_set_id = 1}, [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 1}, - [1332] = {.lex_state = 1}, - [1333] = {.lex_state = 1}, - [1334] = {.lex_state = 0}, + [1331] = {.lex_state = 1, .reserved_word_set_id = 1}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 0}, + [1334] = {.lex_state = 3}, [1335] = {.lex_state = 0}, [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 1}, - [1338] = {.lex_state = 1}, - [1339] = {.lex_state = 1}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 0}, + [1341] = {.lex_state = 1}, + [1342] = {.lex_state = 1, .reserved_word_set_id = 1}, [1343] = {.lex_state = 0}, [1344] = {.lex_state = 0}, [1345] = {.lex_state = 0}, @@ -8639,38 +8683,977 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1347] = {.lex_state = 0}, [1348] = {.lex_state = 0}, [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 1}, + [1350] = {.lex_state = 0}, [1351] = {.lex_state = 0}, [1352] = {.lex_state = 0}, [1353] = {.lex_state = 0}, [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 1}, - [1359] = {.lex_state = 1}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 1}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 1}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 0}, +}; + +static const TSSymbol ts_reserved_words[32][MAX_RESERVED_WORD_SET_SIZE] = { + [1] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + anon_sym_throws, + sym_this, + sym_super, + }, + [2] = { + anon_sym_instanceof, + anon_sym_extends, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + anon_sym_implements, + anon_sym_throws, + }, + [3] = { + anon_sym_instanceof, + anon_sym_extends, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + anon_sym_implements, + anon_sym_throws, + }, + [4] = { + anon_sym_extends, + anon_sym_catch, + anon_sym_finally, + anon_sym_implements, + anon_sym_throws, + }, + [5] = { + anon_sym_extends, + anon_sym_implements, + anon_sym_throws, + }, + [6] = { + anon_sym_extends, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + anon_sym_implements, + anon_sym_throws, + }, + [7] = { + anon_sym_instanceof, + anon_sym_class, + anon_sym_extends, + anon_sym_case, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_implements, + anon_sym_interface, + anon_sym_throws, + }, + [8] = { + anon_sym_extends, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_implements, + anon_sym_throws, + }, + [9] = { + anon_sym_instanceof, + anon_sym_extends, + anon_sym_implements, + anon_sym_throws, + }, + [10] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_class, + anon_sym_extends, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_throws, + }, + [11] = { + anon_sym_instanceof, + anon_sym_extends, + anon_sym_catch, + anon_sym_finally, + anon_sym_implements, + anon_sym_throws, + }, + [12] = { + anon_sym_instanceof, + anon_sym_extends, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_implements, + anon_sym_throws, + }, + [13] = { + anon_sym_instanceof, + anon_sym_new, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_package, + anon_sym_import, + anon_sym_implements, + anon_sym_throws, + sym_this, + sym_super, + }, + [14] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_throws, + }, + [15] = { + anon_sym_final, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + anon_sym_throws, + sym_this, + sym_super, + }, + [16] = { + anon_sym_instanceof, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_implements, + anon_sym_interface, + anon_sym_throws, + sym_this, + sym_super, + }, + [17] = { + anon_sym_instanceof, + anon_sym_new, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_import, + anon_sym_implements, + anon_sym_throws, + sym_this, + sym_super, + }, + [18] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_interface, + anon_sym_throws, + }, + [19] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_super, + }, + [20] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_throws, + sym_this, + sym_super, + }, + [21] = { + anon_sym_instanceof, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_implements, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + anon_sym_throws, + sym_this, + sym_super, + }, + [22] = { + anon_sym_instanceof, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_throws, + sym_this, + sym_super, + }, + [23] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_throws, + sym_this, + sym_super, + }, + [24] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_new, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_throws, + sym_this, + sym_super, + }, + [25] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + anon_sym_throws, + sym_super, + }, + [26] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + anon_sym_throws, + sym_super, + }, + [27] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_new, + anon_sym_class, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_interface, + anon_sym_throws, + sym_this, + sym_super, + }, + [28] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + anon_sym_throws, + }, + [29] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + anon_sym_throws, + }, + [30] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_static, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + anon_sym_throws, + sym_this, + sym_super, + }, + [31] = { + anon_sym_instanceof, + anon_sym_final, + anon_sym_new, + anon_sym_class, + anon_sym_extends, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_assert, + anon_sym_do, + anon_sym_while, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_synchronized, + anon_sym_throw, + anon_sym_try, + anon_sym_catch, + anon_sym_finally, + anon_sym_if, + anon_sym_else, + anon_sym_for, + anon_sym_package, + anon_sym_import, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_implements, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + anon_sym_throws, + sym_this, + sym_super, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [sym_decimal_integer_literal] = ACTIONS(1), @@ -8807,83 +9790,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [1] = { - [sym_program] = STATE(1308), + [STATE(1)] = { + [sym_program] = STATE(1332), [sym__toplevel_statement] = STATE(2), - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), [sym_statement] = STATE(2), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(713), - [sym_type_parameters] = STATE(776), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(758), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__method_header] = STATE(1166), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(711), + [sym_type_parameters] = STATE(740), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(777), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym__method_header] = STATE(1088), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), [sym_method_declaration] = STATE(2), - [sym__reserved_identifier] = STATE(427), [aux_sym_program_repeat1] = STATE(2), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), @@ -8929,10 +9911,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -8941,102 +9922,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(77), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [2] = { + [STATE(2)] = { [sym__toplevel_statement] = STATE(3), - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), [sym_statement] = STATE(3), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(713), - [sym_type_parameters] = STATE(776), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(758), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__method_header] = STATE(1166), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(711), + [sym_type_parameters] = STATE(740), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(777), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym__method_header] = STATE(1088), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), [sym_method_declaration] = STATE(3), - [sym__reserved_identifier] = STATE(427), [aux_sym_program_repeat1] = STATE(3), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(97), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(93), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9081,10 +10061,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -9093,252 +10072,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(77), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [3] = { + [STATE(3)] = { [sym__toplevel_statement] = STATE(3), - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), [sym_statement] = STATE(3), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(713), - [sym_type_parameters] = STATE(776), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(758), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__method_header] = STATE(1166), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(711), + [sym_type_parameters] = STATE(740), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(777), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym__method_header] = STATE(1088), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), [sym_method_declaration] = STATE(3), - [sym__reserved_identifier] = STATE(427), [aux_sym_program_repeat1] = STATE(3), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(99), - [sym_identifier] = ACTIONS(101), - [sym_decimal_integer_literal] = ACTIONS(104), - [sym_hex_integer_literal] = ACTIONS(104), - [sym_octal_integer_literal] = ACTIONS(104), - [sym_binary_integer_literal] = ACTIONS(107), - [sym_decimal_floating_point_literal] = ACTIONS(107), - [sym_hex_floating_point_literal] = ACTIONS(104), - [sym_true] = ACTIONS(104), - [sym_false] = ACTIONS(104), - [sym_character_literal] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(113), - [sym_null_literal] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LT] = ACTIONS(119), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_final] = ACTIONS(125), - [anon_sym_BANG] = ACTIONS(128), - [anon_sym_TILDE] = ACTIONS(128), - [anon_sym_PLUS_PLUS] = ACTIONS(131), - [anon_sym_DASH_DASH] = ACTIONS(131), - [anon_sym_new] = ACTIONS(134), - [anon_sym_class] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_default] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(146), - [anon_sym_assert] = ACTIONS(149), - [anon_sym_do] = ACTIONS(152), - [anon_sym_while] = ACTIONS(155), - [anon_sym_break] = ACTIONS(158), - [anon_sym_continue] = ACTIONS(161), - [anon_sym_return] = ACTIONS(164), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_synchronized] = ACTIONS(170), - [anon_sym_throw] = ACTIONS(173), - [anon_sym_try] = ACTIONS(176), - [anon_sym_if] = ACTIONS(179), - [anon_sym_for] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(185), - [anon_sym_open] = ACTIONS(188), - [anon_sym_module] = ACTIONS(191), - [anon_sym_static] = ACTIONS(125), - [anon_sym_with] = ACTIONS(194), - [anon_sym_package] = ACTIONS(197), - [anon_sym_import] = ACTIONS(200), - [anon_sym_enum] = ACTIONS(203), - [anon_sym_public] = ACTIONS(125), - [anon_sym_protected] = ACTIONS(125), - [anon_sym_private] = ACTIONS(125), - [anon_sym_abstract] = ACTIONS(125), - [anon_sym_strictfp] = ACTIONS(125), - [anon_sym_native] = ACTIONS(125), - [anon_sym_transient] = ACTIONS(125), - [anon_sym_volatile] = ACTIONS(125), - [anon_sym_sealed] = ACTIONS(206), - [anon_sym_non_DASHsealed] = ACTIONS(209), - [anon_sym_record] = ACTIONS(212), - [anon_sym_ATinterface] = ACTIONS(215), - [anon_sym_interface] = ACTIONS(218), - [anon_sym_byte] = ACTIONS(221), - [anon_sym_short] = ACTIONS(221), - [anon_sym_int] = ACTIONS(221), - [anon_sym_long] = ACTIONS(221), - [anon_sym_char] = ACTIONS(221), - [anon_sym_float] = ACTIONS(224), - [anon_sym_double] = ACTIONS(224), - [sym_boolean_type] = ACTIONS(227), - [sym_void_type] = ACTIONS(227), - [sym_this] = ACTIONS(230), - [sym_super] = ACTIONS(233), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(95), + [sym_identifier] = ACTIONS(97), + [sym_decimal_integer_literal] = ACTIONS(100), + [sym_hex_integer_literal] = ACTIONS(100), + [sym_octal_integer_literal] = ACTIONS(100), + [sym_binary_integer_literal] = ACTIONS(103), + [sym_decimal_floating_point_literal] = ACTIONS(103), + [sym_hex_floating_point_literal] = ACTIONS(100), + [sym_true] = ACTIONS(100), + [sym_false] = ACTIONS(100), + [sym_character_literal] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(109), + [sym_null_literal] = ACTIONS(100), + [anon_sym_LPAREN] = ACTIONS(112), + [anon_sym_LT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_final] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(124), + [anon_sym_TILDE] = ACTIONS(124), + [anon_sym_PLUS_PLUS] = ACTIONS(127), + [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_new] = ACTIONS(130), + [anon_sym_class] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(136), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_default] = ACTIONS(121), + [anon_sym_SEMI] = ACTIONS(142), + [anon_sym_assert] = ACTIONS(145), + [anon_sym_do] = ACTIONS(148), + [anon_sym_while] = ACTIONS(151), + [anon_sym_break] = ACTIONS(154), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_return] = ACTIONS(160), + [anon_sym_yield] = ACTIONS(163), + [anon_sym_synchronized] = ACTIONS(166), + [anon_sym_throw] = ACTIONS(169), + [anon_sym_try] = ACTIONS(172), + [anon_sym_if] = ACTIONS(175), + [anon_sym_for] = ACTIONS(178), + [anon_sym_AT] = ACTIONS(181), + [anon_sym_open] = ACTIONS(184), + [anon_sym_module] = ACTIONS(187), + [anon_sym_static] = ACTIONS(121), + [anon_sym_package] = ACTIONS(190), + [anon_sym_import] = ACTIONS(193), + [anon_sym_enum] = ACTIONS(196), + [anon_sym_public] = ACTIONS(121), + [anon_sym_protected] = ACTIONS(121), + [anon_sym_private] = ACTIONS(121), + [anon_sym_abstract] = ACTIONS(121), + [anon_sym_strictfp] = ACTIONS(121), + [anon_sym_native] = ACTIONS(121), + [anon_sym_transient] = ACTIONS(121), + [anon_sym_volatile] = ACTIONS(121), + [anon_sym_sealed] = ACTIONS(121), + [anon_sym_non_DASHsealed] = ACTIONS(199), + [anon_sym_record] = ACTIONS(202), + [anon_sym_ATinterface] = ACTIONS(205), + [anon_sym_interface] = ACTIONS(208), + [anon_sym_byte] = ACTIONS(211), + [anon_sym_short] = ACTIONS(211), + [anon_sym_int] = ACTIONS(211), + [anon_sym_long] = ACTIONS(211), + [anon_sym_char] = ACTIONS(211), + [anon_sym_float] = ACTIONS(214), + [anon_sym_double] = ACTIONS(214), + [sym_boolean_type] = ACTIONS(217), + [sym_void_type] = ACTIONS(217), + [sym_this] = ACTIONS(220), + [sym_super] = ACTIONS(223), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [4] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_switch_label] = STATE(1322), + [STATE(4)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_switch_label] = STATE(1352), [sym_statement] = STATE(7), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat1] = STATE(388), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_switch_block_statement_group_repeat1] = STATE(291), [aux_sym_switch_block_statement_group_repeat2] = STATE(7), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -9350,7 +10326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(238), + [anon_sym_RBRACE] = ACTIONS(228), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -9364,12 +10340,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_case] = ACTIONS(240), - [anon_sym_default] = ACTIONS(240), + [anon_sym_case] = ACTIONS(230), + [anon_sym_default] = ACTIONS(230), [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -9377,16 +10353,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -9395,100 +10370,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [5] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(636), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_type_arguments] = STATE(1251), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(11), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_explicit_constructor_invocation] = STATE(10), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(11), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(5)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(610), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_type_arguments] = STATE(1192), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(10), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_explicit_constructor_invocation] = STATE(9), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_switch_block_statement_group_repeat2] = STATE(10), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -9500,10 +10474,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(238), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_LT] = ACTIONS(252), + [anon_sym_LT] = ACTIONS(240), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_final] = ACTIONS(23), @@ -9519,7 +10493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -9527,16 +10501,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -9545,246 +10518,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(254), - [sym_super] = ACTIONS(256), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(242), + [sym_super] = ACTIONS(244), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [6] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), + [STATE(6)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(258), - [sym_decimal_integer_literal] = ACTIONS(261), - [sym_hex_integer_literal] = ACTIONS(261), - [sym_octal_integer_literal] = ACTIONS(261), - [sym_binary_integer_literal] = ACTIONS(264), - [sym_decimal_floating_point_literal] = ACTIONS(264), - [sym_hex_floating_point_literal] = ACTIONS(261), - [sym_true] = ACTIONS(261), - [sym_false] = ACTIONS(261), - [sym_character_literal] = ACTIONS(264), - [anon_sym_DQUOTE] = ACTIONS(267), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(270), - [anon_sym_RBRACE] = ACTIONS(273), - [sym_null_literal] = ACTIONS(261), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_PLUS] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(278), - [anon_sym_final] = ACTIONS(281), - [anon_sym_BANG] = ACTIONS(284), - [anon_sym_TILDE] = ACTIONS(284), - [anon_sym_PLUS_PLUS] = ACTIONS(287), - [anon_sym_DASH_DASH] = ACTIONS(287), - [anon_sym_new] = ACTIONS(290), - [anon_sym_class] = ACTIONS(293), - [anon_sym_switch] = ACTIONS(296), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_case] = ACTIONS(302), - [anon_sym_default] = ACTIONS(281), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_assert] = ACTIONS(307), - [anon_sym_do] = ACTIONS(310), - [anon_sym_while] = ACTIONS(313), - [anon_sym_break] = ACTIONS(316), - [anon_sym_continue] = ACTIONS(319), - [anon_sym_return] = ACTIONS(322), - [anon_sym_yield] = ACTIONS(325), - [anon_sym_synchronized] = ACTIONS(328), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_try] = ACTIONS(334), - [anon_sym_if] = ACTIONS(337), - [anon_sym_for] = ACTIONS(340), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_open] = ACTIONS(346), - [anon_sym_module] = ACTIONS(349), - [anon_sym_static] = ACTIONS(281), - [anon_sym_with] = ACTIONS(352), - [anon_sym_package] = ACTIONS(355), - [anon_sym_import] = ACTIONS(358), - [anon_sym_enum] = ACTIONS(361), - [anon_sym_public] = ACTIONS(281), - [anon_sym_protected] = ACTIONS(281), - [anon_sym_private] = ACTIONS(281), - [anon_sym_abstract] = ACTIONS(281), - [anon_sym_strictfp] = ACTIONS(281), - [anon_sym_native] = ACTIONS(281), - [anon_sym_transient] = ACTIONS(281), - [anon_sym_volatile] = ACTIONS(281), - [anon_sym_sealed] = ACTIONS(364), - [anon_sym_non_DASHsealed] = ACTIONS(367), - [anon_sym_record] = ACTIONS(370), - [anon_sym_ATinterface] = ACTIONS(373), - [anon_sym_interface] = ACTIONS(376), - [anon_sym_byte] = ACTIONS(379), - [anon_sym_short] = ACTIONS(379), - [anon_sym_int] = ACTIONS(379), - [anon_sym_long] = ACTIONS(379), - [anon_sym_char] = ACTIONS(379), - [anon_sym_float] = ACTIONS(382), - [anon_sym_double] = ACTIONS(382), - [sym_boolean_type] = ACTIONS(385), - [sym_void_type] = ACTIONS(385), - [sym_this] = ACTIONS(388), - [sym_super] = ACTIONS(391), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(246), + [sym_decimal_integer_literal] = ACTIONS(249), + [sym_hex_integer_literal] = ACTIONS(249), + [sym_octal_integer_literal] = ACTIONS(249), + [sym_binary_integer_literal] = ACTIONS(252), + [sym_decimal_floating_point_literal] = ACTIONS(252), + [sym_hex_floating_point_literal] = ACTIONS(249), + [sym_true] = ACTIONS(249), + [sym_false] = ACTIONS(249), + [sym_character_literal] = ACTIONS(252), + [anon_sym_DQUOTE] = ACTIONS(255), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(258), + [anon_sym_RBRACE] = ACTIONS(261), + [sym_null_literal] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(266), + [anon_sym_DASH] = ACTIONS(266), + [anon_sym_final] = ACTIONS(269), + [anon_sym_BANG] = ACTIONS(272), + [anon_sym_TILDE] = ACTIONS(272), + [anon_sym_PLUS_PLUS] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(275), + [anon_sym_new] = ACTIONS(278), + [anon_sym_class] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_case] = ACTIONS(290), + [anon_sym_default] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(292), + [anon_sym_assert] = ACTIONS(295), + [anon_sym_do] = ACTIONS(298), + [anon_sym_while] = ACTIONS(301), + [anon_sym_break] = ACTIONS(304), + [anon_sym_continue] = ACTIONS(307), + [anon_sym_return] = ACTIONS(310), + [anon_sym_yield] = ACTIONS(313), + [anon_sym_synchronized] = ACTIONS(316), + [anon_sym_throw] = ACTIONS(319), + [anon_sym_try] = ACTIONS(322), + [anon_sym_if] = ACTIONS(325), + [anon_sym_for] = ACTIONS(328), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(334), + [anon_sym_module] = ACTIONS(337), + [anon_sym_static] = ACTIONS(269), + [anon_sym_package] = ACTIONS(340), + [anon_sym_import] = ACTIONS(343), + [anon_sym_enum] = ACTIONS(346), + [anon_sym_public] = ACTIONS(269), + [anon_sym_protected] = ACTIONS(269), + [anon_sym_private] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(269), + [anon_sym_strictfp] = ACTIONS(269), + [anon_sym_native] = ACTIONS(269), + [anon_sym_transient] = ACTIONS(269), + [anon_sym_volatile] = ACTIONS(269), + [anon_sym_sealed] = ACTIONS(269), + [anon_sym_non_DASHsealed] = ACTIONS(349), + [anon_sym_record] = ACTIONS(352), + [anon_sym_ATinterface] = ACTIONS(355), + [anon_sym_interface] = ACTIONS(358), + [anon_sym_byte] = ACTIONS(361), + [anon_sym_short] = ACTIONS(361), + [anon_sym_int] = ACTIONS(361), + [anon_sym_long] = ACTIONS(361), + [anon_sym_char] = ACTIONS(361), + [anon_sym_float] = ACTIONS(364), + [anon_sym_double] = ACTIONS(364), + [sym_boolean_type] = ACTIONS(367), + [sym_void_type] = ACTIONS(367), + [sym_this] = ACTIONS(370), + [sym_super] = ACTIONS(373), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), + [STATE(7)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -9796,7 +10766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(394), + [anon_sym_RBRACE] = ACTIONS(376), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -9810,12 +10780,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_case] = ACTIONS(396), - [anon_sym_default] = ACTIONS(396), + [anon_sym_case] = ACTIONS(378), + [anon_sym_default] = ACTIONS(378), [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -9823,16 +10793,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -9841,98 +10810,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [8] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(8)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(11), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_switch_block_statement_group_repeat2] = STATE(11), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -9944,7 +10912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(398), + [anon_sym_RBRACE] = ACTIONS(380), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -9962,7 +10930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -9970,16 +10938,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -9988,98 +10955,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [9] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(8), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(8), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(9)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(12), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_switch_block_statement_group_repeat2] = STATE(12), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -10091,7 +11057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(400), + [anon_sym_RBRACE] = ACTIONS(382), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -10109,7 +11075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -10117,16 +11083,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -10135,98 +11100,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [10] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(12), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(12), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(10)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(6), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_switch_block_statement_group_repeat2] = STATE(6), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -10238,7 +11202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_RBRACE] = ACTIONS(382), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -10256,7 +11220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -10264,16 +11228,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -10282,98 +11245,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [11] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), + [STATE(11)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -10385,7 +11347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_RBRACE] = ACTIONS(384), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -10403,7 +11365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -10411,16 +11373,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -10429,98 +11390,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [12] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), + [STATE(12)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -10532,7 +11492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(386), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -10550,7 +11510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -10558,16 +11518,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -10576,98 +11535,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [13] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(14), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(14), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(13)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(196), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -10679,7 +11636,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(406), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -10697,7 +11653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -10705,16 +11661,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -10723,98 +11678,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [14] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(6), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_switch_block_statement_group_repeat2] = STATE(6), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(14)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(209), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -10826,7 +11779,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(408), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -10844,7 +11796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -10852,16 +11804,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -10870,97 +11821,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [15] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(307), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(15)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(180), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -10989,7 +11939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -10997,16 +11947,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -11015,97 +11964,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [16] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(316), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(16)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(257), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -11134,7 +12082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -11142,16 +12090,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -11160,97 +12107,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [17] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(1339), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(17)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(154), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -11279,7 +12225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(43), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -11287,16 +12233,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -11305,96 +12250,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [18] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(326), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(18)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(193), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11438,10 +12382,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -11450,96 +12393,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [19] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(383), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(19)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(216), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11583,10 +12525,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -11595,96 +12536,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [20] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(257), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(20)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(153), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11728,10 +12668,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -11740,96 +12679,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [21] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(319), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(21)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(155), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11873,10 +12811,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -11885,96 +12822,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [22] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(393), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(22)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(157), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12018,10 +12954,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -12030,96 +12965,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [23] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(275), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(23)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(162), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12163,10 +13097,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -12175,96 +13108,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [24] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(276), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(24)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(164), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12308,10 +13240,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -12320,96 +13251,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [25] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(278), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(25)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(342), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12453,10 +13383,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -12465,96 +13394,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [26] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(282), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(26)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(176), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12598,10 +13526,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -12610,96 +13537,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [27] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(283), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(27)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(177), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12743,10 +13669,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -12755,96 +13680,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [28] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(292), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(28)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(179), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12888,10 +13812,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -12900,96 +13823,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [29] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(293), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(29)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(181), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13033,10 +13955,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -13045,96 +13966,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [30] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(294), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(30)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(183), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13178,10 +14098,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -13190,96 +14109,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [31] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(295), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(31)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(187), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13323,10 +14241,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -13335,96 +14252,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [32] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(297), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(32)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(188), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13468,10 +14384,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -13480,96 +14395,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [33] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(298), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(33)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(189), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13613,10 +14527,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -13625,96 +14538,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [34] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(299), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(34)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(195), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13758,10 +14670,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -13770,96 +14681,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [35] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(300), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(35)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(196), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13903,10 +14813,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -13915,96 +14824,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [36] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(304), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(36)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(197), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14048,10 +14956,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -14060,96 +14967,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [37] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(305), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(37)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(199), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14193,10 +15099,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -14205,96 +15110,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [38] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(306), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(38)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(201), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14338,10 +15242,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -14350,96 +15253,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [39] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(307), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(39)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(203), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14483,10 +15385,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -14495,96 +15396,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [40] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(309), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(40)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(204), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14628,10 +15528,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -14640,96 +15539,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [41] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(311), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(41)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(205), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14773,10 +15671,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -14785,96 +15682,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [42] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(312), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(42)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(206), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -14918,10 +15814,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -14930,96 +15825,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [43] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(313), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(43)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(207), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15063,10 +15957,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -15075,96 +15968,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [44] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(314), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(44)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(118), + [sym_statement] = STATE(209), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -15208,10 +16100,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -15220,97 +16111,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [45] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(315), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(7), + [STATE(45)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(154), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -15339,7 +16229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -15347,16 +16237,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -15365,97 +16254,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [46] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(316), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(7), + [STATE(46)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(323), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -15484,7 +16372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -15492,16 +16380,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -15510,97 +16397,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [47] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(122), - [sym_statement] = STATE(346), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(7), + [STATE(47)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(180), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -15629,7 +16515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -15637,16 +16523,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -15655,97 +16540,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [48] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(319), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(48)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(257), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -15774,7 +16658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -15782,16 +16666,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -15800,97 +16683,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [49] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(389), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(49)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(193), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -15919,7 +16801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -15927,16 +16809,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -15945,97 +16826,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [50] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(346), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(50)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(216), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -16064,7 +16944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -16072,16 +16952,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -16090,97 +16969,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [51] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(326), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(51)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(153), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -16209,7 +17087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -16217,16 +17095,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -16235,97 +17112,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [52] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(383), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(52)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(155), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -16354,7 +17230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -16362,16 +17238,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -16380,97 +17255,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [53] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(257), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(53)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(157), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -16499,7 +17373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -16507,16 +17381,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -16525,97 +17398,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [54] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(275), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(54)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(162), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -16644,7 +17516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -16652,16 +17524,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -16670,97 +17541,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(278), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(55)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(164), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -16789,7 +17659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -16797,16 +17667,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -16815,97 +17684,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(282), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(56)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(176), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -16934,7 +17802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -16942,16 +17810,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -16960,97 +17827,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(283), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(57)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(177), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -17079,7 +17945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -17087,16 +17953,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -17105,97 +17970,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(292), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(58)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(179), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -17224,7 +18088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -17232,16 +18096,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -17250,97 +18113,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(293), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(59)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(1305), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -17369,7 +18231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -17377,16 +18239,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -17395,97 +18256,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(294), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(60)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(183), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -17514,7 +18374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -17522,16 +18382,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -17540,97 +18399,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [61] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(295), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(61)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(187), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -17659,7 +18517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -17667,16 +18525,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -17685,97 +18542,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(297), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(62)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(188), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -17804,7 +18660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -17812,16 +18668,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -17830,97 +18685,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [63] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(298), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(63)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(189), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -17949,7 +18803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -17957,16 +18811,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -17975,97 +18828,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [64] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(299), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(64)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(195), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -18094,7 +18946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -18102,16 +18954,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -18120,97 +18971,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [65] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(300), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(65)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(196), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -18239,7 +19089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -18247,16 +19097,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -18265,97 +19114,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [66] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(304), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(66)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(197), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -18384,7 +19232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -18392,16 +19240,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -18410,97 +19257,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [67] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(305), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(67)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(199), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -18529,7 +19375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -18537,16 +19383,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -18555,97 +19400,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [68] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(306), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(68)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(201), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -18674,7 +19518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -18682,16 +19526,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -18700,97 +19543,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(307), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(69)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(203), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -18819,7 +19661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -18827,16 +19669,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -18845,97 +19686,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [70] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(309), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(70)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(204), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -18964,7 +19804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -18972,16 +19812,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -18990,97 +19829,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(311), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(71)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(205), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -19109,7 +19947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -19117,16 +19955,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -19135,97 +19972,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [72] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(312), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(72)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(206), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -19254,7 +20090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -19262,16 +20098,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -19280,97 +20115,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [73] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(313), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(73)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(207), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -19399,7 +20233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -19407,16 +20241,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -19425,97 +20258,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [74] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(314), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(74)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(209), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -19544,7 +20376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -19552,16 +20384,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -19570,97 +20401,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [75] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(315), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(75)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(154), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -19689,7 +20519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -19697,16 +20527,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -19715,97 +20544,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [76] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(316), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(76)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(1231), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -19834,7 +20662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -19842,16 +20670,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -19860,97 +20687,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [77] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(319), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(77)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(180), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -19979,7 +20805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -19987,16 +20813,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -20005,97 +20830,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [78] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(1262), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(78)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(257), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -20124,7 +20948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -20132,16 +20956,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -20150,97 +20973,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(346), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(79)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(193), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -20269,7 +21091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -20277,16 +21099,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -20295,97 +21116,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(326), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(80)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(216), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -20414,7 +21234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -20422,16 +21242,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -20440,97 +21259,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(383), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(81)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(153), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -20559,7 +21377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -20567,16 +21385,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -20585,97 +21402,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(257), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(82)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(155), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -20704,7 +21520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -20712,16 +21528,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -20730,97 +21545,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(275), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(83)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(157), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -20849,7 +21663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -20857,16 +21671,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -20875,97 +21688,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(276), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(84)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(162), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -20994,7 +21806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -21002,16 +21814,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -21020,97 +21831,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(278), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(85)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(164), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -21139,7 +21949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -21147,16 +21957,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -21165,97 +21974,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(282), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(86)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(176), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -21284,7 +22092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -21292,16 +22100,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -21310,97 +22117,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(283), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(87)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(177), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -21429,7 +22235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -21437,16 +22243,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -21455,97 +22260,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(292), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(88)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(179), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -21574,7 +22378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -21582,16 +22386,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -21600,97 +22403,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(293), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(89)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(181), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -21719,7 +22521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -21727,16 +22529,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -21745,97 +22546,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(294), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(90)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(183), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -21864,7 +22664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -21872,16 +22672,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -21890,97 +22689,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(295), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(91)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(187), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -22009,7 +22807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -22017,16 +22815,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -22035,97 +22832,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(297), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(92)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(188), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -22154,7 +22950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -22162,16 +22958,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -22180,97 +22975,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(298), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(93)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(189), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -22299,7 +23093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -22307,16 +23101,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -22325,97 +23118,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(299), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(94)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(195), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -22444,7 +23236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -22452,16 +23244,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -22470,97 +23261,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(300), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(95)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(197), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -22589,7 +23379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -22597,16 +23387,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -22615,97 +23404,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(304), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(96)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(199), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -22734,7 +23522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -22742,16 +23530,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -22760,97 +23547,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [97] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(305), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(97)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(201), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -22879,7 +23665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -22887,16 +23673,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -22905,97 +23690,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(306), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(98)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(203), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -23024,7 +23808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -23032,16 +23816,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -23050,97 +23833,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(309), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(99)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(204), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -23169,7 +23951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -23177,16 +23959,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -23195,97 +23976,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(311), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(100)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(205), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -23314,7 +24094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -23322,16 +24102,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -23340,97 +24119,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(312), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(101)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(206), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -23459,7 +24237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -23467,16 +24245,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -23485,97 +24262,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(313), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(102)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(630), + [sym_statement] = STATE(207), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(388), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -23604,7 +24380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(390), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -23612,16 +24388,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(392), + [anon_sym_for] = ACTIONS(394), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -23630,97 +24405,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(314), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(410), + [STATE(103)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(115), + [sym_statement] = STATE(181), + [sym_block] = STATE(222), + [sym_expression_statement] = STATE(222), + [sym_labeled_statement] = STATE(222), + [sym_assert_statement] = STATE(222), + [sym_do_statement] = STATE(222), + [sym_break_statement] = STATE(222), + [sym_continue_statement] = STATE(222), + [sym_return_statement] = STATE(222), + [sym_yield_statement] = STATE(222), + [sym_synchronized_statement] = STATE(222), + [sym_throw_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_try_with_resources_statement] = STATE(222), + [sym_if_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_enhanced_for_statement] = STATE(222), + [sym__annotation] = STATE(515), + [sym_marker_annotation] = STATE(515), + [sym_annotation] = STATE(515), + [sym_declaration] = STATE(222), + [sym_module_declaration] = STATE(208), + [sym_package_declaration] = STATE(208), + [sym_import_declaration] = STATE(208), + [sym_enum_declaration] = STATE(208), + [sym_class_declaration] = STATE(208), + [sym_modifiers] = STATE(736), + [sym_record_declaration] = STATE(208), + [sym_annotation_type_declaration] = STATE(208), + [sym_interface_declaration] = STATE(208), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(783), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(222), + [aux_sym_array_creation_expression_repeat1] = STATE(678), + [aux_sym_modifiers_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(226), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -23749,7 +24523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(37), [anon_sym_assert] = ACTIONS(39), [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), + [anon_sym_while] = ACTIONS(232), [anon_sym_break] = ACTIONS(45), [anon_sym_continue] = ACTIONS(47), [anon_sym_return] = ACTIONS(49), @@ -23757,16 +24531,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_synchronized] = ACTIONS(53), [anon_sym_throw] = ACTIONS(55), [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), [anon_sym_AT] = ACTIONS(63), [anon_sym_open] = ACTIONS(65), [anon_sym_module] = ACTIONS(67), [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), + [anon_sym_package] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_enum] = ACTIONS(73), [anon_sym_public] = ACTIONS(23), [anon_sym_protected] = ACTIONS(23), [anon_sym_private] = ACTIONS(23), @@ -23775,97 +24548,905 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_native] = ACTIONS(23), [anon_sym_transient] = ACTIONS(23), [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_sealed] = ACTIONS(23), + [anon_sym_non_DASHsealed] = ACTIONS(75), + [anon_sym_record] = ACTIONS(77), + [anon_sym_ATinterface] = ACTIONS(79), + [anon_sym_interface] = ACTIONS(81), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(667), - [sym_statement] = STATE(315), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), + [STATE(104)] = { + [ts_builtin_sym_end] = ACTIONS(396), + [sym_identifier] = ACTIONS(398), + [sym_decimal_integer_literal] = ACTIONS(398), + [sym_hex_integer_literal] = ACTIONS(398), + [sym_octal_integer_literal] = ACTIONS(398), + [sym_binary_integer_literal] = ACTIONS(396), + [sym_decimal_floating_point_literal] = ACTIONS(396), + [sym_hex_floating_point_literal] = ACTIONS(398), + [sym_true] = ACTIONS(398), + [sym_false] = ACTIONS(398), + [sym_character_literal] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(398), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [sym_null_literal] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(398), + [anon_sym_GT] = ACTIONS(398), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_AMP_AMP] = ACTIONS(396), + [anon_sym_PIPE_PIPE] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(398), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(398), + [anon_sym_PIPE] = ACTIONS(398), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(396), + [anon_sym_GT_GT] = ACTIONS(398), + [anon_sym_GT_GT_GT] = ACTIONS(396), + [anon_sym_instanceof] = ACTIONS(398), + [anon_sym_final] = ACTIONS(398), + [anon_sym_DASH_GT] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_COLON] = ACTIONS(398), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(396), + [anon_sym_PLUS_PLUS] = ACTIONS(396), + [anon_sym_DASH_DASH] = ACTIONS(396), + [anon_sym_new] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(398), + [anon_sym_class] = ACTIONS(398), + [anon_sym_COLON_COLON] = ACTIONS(396), + [anon_sym_switch] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_case] = ACTIONS(398), + [anon_sym_default] = ACTIONS(398), + [anon_sym_when] = ACTIONS(398), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_assert] = ACTIONS(398), + [anon_sym_do] = ACTIONS(398), + [anon_sym_while] = ACTIONS(398), + [anon_sym_break] = ACTIONS(398), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_return] = ACTIONS(398), + [anon_sym_yield] = ACTIONS(398), + [anon_sym_synchronized] = ACTIONS(398), + [anon_sym_throw] = ACTIONS(398), + [anon_sym_try] = ACTIONS(398), + [anon_sym_if] = ACTIONS(398), + [anon_sym_else] = ACTIONS(398), + [anon_sym_for] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(398), + [anon_sym_open] = ACTIONS(398), + [anon_sym_module] = ACTIONS(398), + [anon_sym_static] = ACTIONS(398), + [anon_sym_package] = ACTIONS(398), + [anon_sym_import] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [anon_sym_public] = ACTIONS(398), + [anon_sym_protected] = ACTIONS(398), + [anon_sym_private] = ACTIONS(398), + [anon_sym_abstract] = ACTIONS(398), + [anon_sym_strictfp] = ACTIONS(398), + [anon_sym_native] = ACTIONS(398), + [anon_sym_transient] = ACTIONS(398), + [anon_sym_volatile] = ACTIONS(398), + [anon_sym_sealed] = ACTIONS(398), + [anon_sym_non_DASHsealed] = ACTIONS(396), + [anon_sym_record] = ACTIONS(398), + [anon_sym_ATinterface] = ACTIONS(396), + [anon_sym_interface] = ACTIONS(398), + [anon_sym_byte] = ACTIONS(398), + [anon_sym_short] = ACTIONS(398), + [anon_sym_int] = ACTIONS(398), + [anon_sym_long] = ACTIONS(398), + [anon_sym_char] = ACTIONS(398), + [anon_sym_float] = ACTIONS(398), + [anon_sym_double] = ACTIONS(398), + [sym_boolean_type] = ACTIONS(398), + [sym_void_type] = ACTIONS(398), + [sym_this] = ACTIONS(398), + [sym_super] = ACTIONS(398), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(105)] = { + [ts_builtin_sym_end] = ACTIONS(400), + [sym_identifier] = ACTIONS(402), + [sym_decimal_integer_literal] = ACTIONS(402), + [sym_hex_integer_literal] = ACTIONS(402), + [sym_octal_integer_literal] = ACTIONS(402), + [sym_binary_integer_literal] = ACTIONS(400), + [sym_decimal_floating_point_literal] = ACTIONS(400), + [sym_hex_floating_point_literal] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_character_literal] = ACTIONS(400), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(400), + [anon_sym_RBRACE] = ACTIONS(400), + [sym_null_literal] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym_RPAREN] = ACTIONS(400), + [anon_sym_AMP] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(402), + [anon_sym_LT] = ACTIONS(402), + [anon_sym_GT_EQ] = ACTIONS(400), + [anon_sym_LT_EQ] = ACTIONS(400), + [anon_sym_EQ_EQ] = ACTIONS(400), + [anon_sym_BANG_EQ] = ACTIONS(400), + [anon_sym_AMP_AMP] = ACTIONS(400), + [anon_sym_PIPE_PIPE] = ACTIONS(400), + [anon_sym_PLUS] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(402), + [anon_sym_STAR] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(402), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_CARET] = ACTIONS(400), + [anon_sym_PERCENT] = ACTIONS(400), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(402), + [anon_sym_GT_GT_GT] = ACTIONS(400), + [anon_sym_instanceof] = ACTIONS(402), + [anon_sym_final] = ACTIONS(402), + [anon_sym_DASH_GT] = ACTIONS(400), + [anon_sym_COMMA] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(400), + [anon_sym_COLON] = ACTIONS(402), + [anon_sym_BANG] = ACTIONS(402), + [anon_sym_TILDE] = ACTIONS(400), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_RBRACK] = ACTIONS(400), + [anon_sym_DOT] = ACTIONS(402), + [anon_sym_class] = ACTIONS(402), + [anon_sym_COLON_COLON] = ACTIONS(400), + [anon_sym_switch] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_case] = ACTIONS(402), + [anon_sym_default] = ACTIONS(402), + [anon_sym_when] = ACTIONS(402), + [anon_sym_SEMI] = ACTIONS(400), + [anon_sym_assert] = ACTIONS(402), + [anon_sym_do] = ACTIONS(402), + [anon_sym_while] = ACTIONS(402), + [anon_sym_break] = ACTIONS(402), + [anon_sym_continue] = ACTIONS(402), + [anon_sym_return] = ACTIONS(402), + [anon_sym_yield] = ACTIONS(402), + [anon_sym_synchronized] = ACTIONS(402), + [anon_sym_throw] = ACTIONS(402), + [anon_sym_try] = ACTIONS(402), + [anon_sym_if] = ACTIONS(402), + [anon_sym_else] = ACTIONS(402), + [anon_sym_for] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(402), + [anon_sym_open] = ACTIONS(402), + [anon_sym_module] = ACTIONS(402), + [anon_sym_static] = ACTIONS(402), + [anon_sym_package] = ACTIONS(402), + [anon_sym_import] = ACTIONS(402), + [anon_sym_enum] = ACTIONS(402), + [anon_sym_public] = ACTIONS(402), + [anon_sym_protected] = ACTIONS(402), + [anon_sym_private] = ACTIONS(402), + [anon_sym_abstract] = ACTIONS(402), + [anon_sym_strictfp] = ACTIONS(402), + [anon_sym_native] = ACTIONS(402), + [anon_sym_transient] = ACTIONS(402), + [anon_sym_volatile] = ACTIONS(402), + [anon_sym_sealed] = ACTIONS(402), + [anon_sym_non_DASHsealed] = ACTIONS(400), + [anon_sym_record] = ACTIONS(402), + [anon_sym_ATinterface] = ACTIONS(400), + [anon_sym_interface] = ACTIONS(402), + [anon_sym_byte] = ACTIONS(402), + [anon_sym_short] = ACTIONS(402), + [anon_sym_int] = ACTIONS(402), + [anon_sym_long] = ACTIONS(402), + [anon_sym_char] = ACTIONS(402), + [anon_sym_float] = ACTIONS(402), + [anon_sym_double] = ACTIONS(402), + [sym_boolean_type] = ACTIONS(402), + [sym_void_type] = ACTIONS(402), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(106)] = { + [ts_builtin_sym_end] = ACTIONS(404), + [sym_identifier] = ACTIONS(406), + [sym_decimal_integer_literal] = ACTIONS(406), + [sym_hex_integer_literal] = ACTIONS(406), + [sym_octal_integer_literal] = ACTIONS(406), + [sym_binary_integer_literal] = ACTIONS(404), + [sym_decimal_floating_point_literal] = ACTIONS(404), + [sym_hex_floating_point_literal] = ACTIONS(406), + [sym_true] = ACTIONS(406), + [sym_false] = ACTIONS(406), + [sym_character_literal] = ACTIONS(404), + [anon_sym_DQUOTE] = ACTIONS(406), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [sym_null_literal] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(406), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_GT_EQ] = ACTIONS(404), + [anon_sym_LT_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(404), + [anon_sym_BANG_EQ] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(404), + [anon_sym_PIPE_PIPE] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(406), + [anon_sym_GT_GT_GT] = ACTIONS(404), + [anon_sym_instanceof] = ACTIONS(406), + [anon_sym_final] = ACTIONS(406), + [anon_sym_DASH_GT] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(404), + [anon_sym_COLON] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(404), + [anon_sym_PLUS_PLUS] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(404), + [anon_sym_new] = ACTIONS(406), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_class] = ACTIONS(406), + [anon_sym_switch] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_case] = ACTIONS(406), + [anon_sym_default] = ACTIONS(406), + [anon_sym_when] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_assert] = ACTIONS(406), + [anon_sym_do] = ACTIONS(406), + [anon_sym_while] = ACTIONS(406), + [anon_sym_break] = ACTIONS(406), + [anon_sym_continue] = ACTIONS(406), + [anon_sym_return] = ACTIONS(406), + [anon_sym_yield] = ACTIONS(406), + [anon_sym_synchronized] = ACTIONS(406), + [anon_sym_throw] = ACTIONS(406), + [anon_sym_try] = ACTIONS(406), + [anon_sym_catch] = ACTIONS(406), + [anon_sym_finally] = ACTIONS(406), + [anon_sym_if] = ACTIONS(406), + [anon_sym_else] = ACTIONS(406), + [anon_sym_for] = ACTIONS(406), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_open] = ACTIONS(406), + [anon_sym_module] = ACTIONS(406), + [anon_sym_static] = ACTIONS(406), + [anon_sym_package] = ACTIONS(406), + [anon_sym_import] = ACTIONS(406), + [anon_sym_enum] = ACTIONS(406), + [anon_sym_public] = ACTIONS(406), + [anon_sym_protected] = ACTIONS(406), + [anon_sym_private] = ACTIONS(406), + [anon_sym_abstract] = ACTIONS(406), + [anon_sym_strictfp] = ACTIONS(406), + [anon_sym_native] = ACTIONS(406), + [anon_sym_transient] = ACTIONS(406), + [anon_sym_volatile] = ACTIONS(406), + [anon_sym_sealed] = ACTIONS(406), + [anon_sym_non_DASHsealed] = ACTIONS(404), + [anon_sym_record] = ACTIONS(406), + [anon_sym_ATinterface] = ACTIONS(404), + [anon_sym_interface] = ACTIONS(406), + [anon_sym_byte] = ACTIONS(406), + [anon_sym_short] = ACTIONS(406), + [anon_sym_int] = ACTIONS(406), + [anon_sym_long] = ACTIONS(406), + [anon_sym_char] = ACTIONS(406), + [anon_sym_float] = ACTIONS(406), + [anon_sym_double] = ACTIONS(406), + [sym_boolean_type] = ACTIONS(406), + [sym_void_type] = ACTIONS(406), + [sym_this] = ACTIONS(406), + [sym_super] = ACTIONS(406), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(107)] = { + [ts_builtin_sym_end] = ACTIONS(408), [sym_identifier] = ACTIONS(410), + [sym_decimal_integer_literal] = ACTIONS(410), + [sym_hex_integer_literal] = ACTIONS(410), + [sym_octal_integer_literal] = ACTIONS(410), + [sym_binary_integer_literal] = ACTIONS(408), + [sym_decimal_floating_point_literal] = ACTIONS(408), + [sym_hex_floating_point_literal] = ACTIONS(410), + [sym_true] = ACTIONS(410), + [sym_false] = ACTIONS(410), + [sym_character_literal] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(410), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(408), + [anon_sym_RBRACE] = ACTIONS(408), + [sym_null_literal] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(408), + [anon_sym_RPAREN] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT_EQ] = ACTIONS(408), + [anon_sym_LT_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(408), + [anon_sym_BANG_EQ] = ACTIONS(408), + [anon_sym_AMP_AMP] = ACTIONS(408), + [anon_sym_PIPE_PIPE] = ACTIONS(408), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(410), + [anon_sym_GT_GT_GT] = ACTIONS(408), + [anon_sym_instanceof] = ACTIONS(410), + [anon_sym_final] = ACTIONS(410), + [anon_sym_DASH_GT] = ACTIONS(408), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_COLON] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_TILDE] = ACTIONS(408), + [anon_sym_PLUS_PLUS] = ACTIONS(408), + [anon_sym_DASH_DASH] = ACTIONS(408), + [anon_sym_new] = ACTIONS(410), + [anon_sym_RBRACK] = ACTIONS(408), + [anon_sym_class] = ACTIONS(410), + [anon_sym_switch] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(408), + [anon_sym_case] = ACTIONS(410), + [anon_sym_default] = ACTIONS(410), + [anon_sym_when] = ACTIONS(410), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym_assert] = ACTIONS(410), + [anon_sym_do] = ACTIONS(410), + [anon_sym_while] = ACTIONS(410), + [anon_sym_break] = ACTIONS(410), + [anon_sym_continue] = ACTIONS(410), + [anon_sym_return] = ACTIONS(410), + [anon_sym_yield] = ACTIONS(410), + [anon_sym_synchronized] = ACTIONS(410), + [anon_sym_throw] = ACTIONS(410), + [anon_sym_try] = ACTIONS(410), + [anon_sym_catch] = ACTIONS(410), + [anon_sym_finally] = ACTIONS(410), + [anon_sym_if] = ACTIONS(410), + [anon_sym_else] = ACTIONS(410), + [anon_sym_for] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(410), + [anon_sym_open] = ACTIONS(410), + [anon_sym_module] = ACTIONS(410), + [anon_sym_static] = ACTIONS(410), + [anon_sym_package] = ACTIONS(410), + [anon_sym_import] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(410), + [anon_sym_public] = ACTIONS(410), + [anon_sym_protected] = ACTIONS(410), + [anon_sym_private] = ACTIONS(410), + [anon_sym_abstract] = ACTIONS(410), + [anon_sym_strictfp] = ACTIONS(410), + [anon_sym_native] = ACTIONS(410), + [anon_sym_transient] = ACTIONS(410), + [anon_sym_volatile] = ACTIONS(410), + [anon_sym_sealed] = ACTIONS(410), + [anon_sym_non_DASHsealed] = ACTIONS(408), + [anon_sym_record] = ACTIONS(410), + [anon_sym_ATinterface] = ACTIONS(408), + [anon_sym_interface] = ACTIONS(410), + [anon_sym_byte] = ACTIONS(410), + [anon_sym_short] = ACTIONS(410), + [anon_sym_int] = ACTIONS(410), + [anon_sym_long] = ACTIONS(410), + [anon_sym_char] = ACTIONS(410), + [anon_sym_float] = ACTIONS(410), + [anon_sym_double] = ACTIONS(410), + [sym_boolean_type] = ACTIONS(410), + [sym_void_type] = ACTIONS(410), + [sym_this] = ACTIONS(410), + [sym_super] = ACTIONS(410), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(108)] = { + [ts_builtin_sym_end] = ACTIONS(412), + [sym_identifier] = ACTIONS(414), + [sym_decimal_integer_literal] = ACTIONS(414), + [sym_hex_integer_literal] = ACTIONS(414), + [sym_octal_integer_literal] = ACTIONS(414), + [sym_binary_integer_literal] = ACTIONS(412), + [sym_decimal_floating_point_literal] = ACTIONS(412), + [sym_hex_floating_point_literal] = ACTIONS(414), + [sym_true] = ACTIONS(414), + [sym_false] = ACTIONS(414), + [sym_character_literal] = ACTIONS(412), + [anon_sym_DQUOTE] = ACTIONS(414), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(412), + [anon_sym_RBRACE] = ACTIONS(412), + [sym_null_literal] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_RPAREN] = ACTIONS(412), + [anon_sym_AMP] = ACTIONS(414), + [anon_sym_GT] = ACTIONS(414), + [anon_sym_LT] = ACTIONS(414), + [anon_sym_GT_EQ] = ACTIONS(412), + [anon_sym_LT_EQ] = ACTIONS(412), + [anon_sym_EQ_EQ] = ACTIONS(412), + [anon_sym_BANG_EQ] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(412), + [anon_sym_PIPE_PIPE] = ACTIONS(412), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(414), + [anon_sym_CARET] = ACTIONS(412), + [anon_sym_PERCENT] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(414), + [anon_sym_GT_GT_GT] = ACTIONS(412), + [anon_sym_instanceof] = ACTIONS(414), + [anon_sym_final] = ACTIONS(414), + [anon_sym_DASH_GT] = ACTIONS(412), + [anon_sym_COMMA] = ACTIONS(412), + [anon_sym_QMARK] = ACTIONS(412), + [anon_sym_COLON] = ACTIONS(412), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(412), + [anon_sym_DASH_DASH] = ACTIONS(412), + [anon_sym_new] = ACTIONS(414), + [anon_sym_RBRACK] = ACTIONS(412), + [anon_sym_class] = ACTIONS(414), + [anon_sym_switch] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_case] = ACTIONS(414), + [anon_sym_default] = ACTIONS(414), + [anon_sym_when] = ACTIONS(414), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_assert] = ACTIONS(414), + [anon_sym_do] = ACTIONS(414), + [anon_sym_while] = ACTIONS(414), + [anon_sym_break] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(414), + [anon_sym_return] = ACTIONS(414), + [anon_sym_yield] = ACTIONS(414), + [anon_sym_synchronized] = ACTIONS(414), + [anon_sym_throw] = ACTIONS(414), + [anon_sym_try] = ACTIONS(414), + [anon_sym_if] = ACTIONS(414), + [anon_sym_else] = ACTIONS(414), + [anon_sym_for] = ACTIONS(414), + [anon_sym_AT] = ACTIONS(414), + [anon_sym_open] = ACTIONS(414), + [anon_sym_module] = ACTIONS(414), + [anon_sym_static] = ACTIONS(414), + [anon_sym_package] = ACTIONS(414), + [anon_sym_import] = ACTIONS(414), + [anon_sym_enum] = ACTIONS(414), + [anon_sym_public] = ACTIONS(414), + [anon_sym_protected] = ACTIONS(414), + [anon_sym_private] = ACTIONS(414), + [anon_sym_abstract] = ACTIONS(414), + [anon_sym_strictfp] = ACTIONS(414), + [anon_sym_native] = ACTIONS(414), + [anon_sym_transient] = ACTIONS(414), + [anon_sym_volatile] = ACTIONS(414), + [anon_sym_sealed] = ACTIONS(414), + [anon_sym_non_DASHsealed] = ACTIONS(412), + [anon_sym_record] = ACTIONS(414), + [anon_sym_ATinterface] = ACTIONS(412), + [anon_sym_interface] = ACTIONS(414), + [anon_sym_byte] = ACTIONS(414), + [anon_sym_short] = ACTIONS(414), + [anon_sym_int] = ACTIONS(414), + [anon_sym_long] = ACTIONS(414), + [anon_sym_char] = ACTIONS(414), + [anon_sym_float] = ACTIONS(414), + [anon_sym_double] = ACTIONS(414), + [sym_boolean_type] = ACTIONS(414), + [sym_void_type] = ACTIONS(414), + [sym_this] = ACTIONS(414), + [sym_super] = ACTIONS(414), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(109)] = { + [ts_builtin_sym_end] = ACTIONS(416), + [sym_identifier] = ACTIONS(418), + [sym_decimal_integer_literal] = ACTIONS(418), + [sym_hex_integer_literal] = ACTIONS(418), + [sym_octal_integer_literal] = ACTIONS(418), + [sym_binary_integer_literal] = ACTIONS(416), + [sym_decimal_floating_point_literal] = ACTIONS(416), + [sym_hex_floating_point_literal] = ACTIONS(418), + [sym_true] = ACTIONS(418), + [sym_false] = ACTIONS(418), + [sym_character_literal] = ACTIONS(416), + [anon_sym_DQUOTE] = ACTIONS(418), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(416), + [sym_null_literal] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(416), + [anon_sym_RPAREN] = ACTIONS(416), + [anon_sym_AMP] = ACTIONS(418), + [anon_sym_GT] = ACTIONS(418), + [anon_sym_LT] = ACTIONS(418), + [anon_sym_GT_EQ] = ACTIONS(416), + [anon_sym_LT_EQ] = ACTIONS(416), + [anon_sym_EQ_EQ] = ACTIONS(416), + [anon_sym_BANG_EQ] = ACTIONS(416), + [anon_sym_AMP_AMP] = ACTIONS(416), + [anon_sym_PIPE_PIPE] = ACTIONS(416), + [anon_sym_PLUS] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_STAR] = ACTIONS(416), + [anon_sym_SLASH] = ACTIONS(418), + [anon_sym_PIPE] = ACTIONS(418), + [anon_sym_CARET] = ACTIONS(416), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_LT_LT] = ACTIONS(416), + [anon_sym_GT_GT] = ACTIONS(418), + [anon_sym_GT_GT_GT] = ACTIONS(416), + [anon_sym_instanceof] = ACTIONS(418), + [anon_sym_final] = ACTIONS(418), + [anon_sym_DASH_GT] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(416), + [anon_sym_QMARK] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(416), + [anon_sym_new] = ACTIONS(418), + [anon_sym_RBRACK] = ACTIONS(416), + [anon_sym_class] = ACTIONS(418), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_case] = ACTIONS(418), + [anon_sym_default] = ACTIONS(418), + [anon_sym_when] = ACTIONS(418), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_assert] = ACTIONS(418), + [anon_sym_do] = ACTIONS(418), + [anon_sym_while] = ACTIONS(418), + [anon_sym_break] = ACTIONS(418), + [anon_sym_continue] = ACTIONS(418), + [anon_sym_return] = ACTIONS(418), + [anon_sym_yield] = ACTIONS(418), + [anon_sym_synchronized] = ACTIONS(418), + [anon_sym_throw] = ACTIONS(418), + [anon_sym_try] = ACTIONS(418), + [anon_sym_if] = ACTIONS(418), + [anon_sym_else] = ACTIONS(418), + [anon_sym_for] = ACTIONS(418), + [anon_sym_AT] = ACTIONS(418), + [anon_sym_open] = ACTIONS(418), + [anon_sym_module] = ACTIONS(418), + [anon_sym_static] = ACTIONS(418), + [anon_sym_package] = ACTIONS(418), + [anon_sym_import] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(418), + [anon_sym_public] = ACTIONS(418), + [anon_sym_protected] = ACTIONS(418), + [anon_sym_private] = ACTIONS(418), + [anon_sym_abstract] = ACTIONS(418), + [anon_sym_strictfp] = ACTIONS(418), + [anon_sym_native] = ACTIONS(418), + [anon_sym_transient] = ACTIONS(418), + [anon_sym_volatile] = ACTIONS(418), + [anon_sym_sealed] = ACTIONS(418), + [anon_sym_non_DASHsealed] = ACTIONS(416), + [anon_sym_record] = ACTIONS(418), + [anon_sym_ATinterface] = ACTIONS(416), + [anon_sym_interface] = ACTIONS(418), + [anon_sym_byte] = ACTIONS(418), + [anon_sym_short] = ACTIONS(418), + [anon_sym_int] = ACTIONS(418), + [anon_sym_long] = ACTIONS(418), + [anon_sym_char] = ACTIONS(418), + [anon_sym_float] = ACTIONS(418), + [anon_sym_double] = ACTIONS(418), + [sym_boolean_type] = ACTIONS(418), + [sym_void_type] = ACTIONS(418), + [sym_this] = ACTIONS(418), + [sym_super] = ACTIONS(418), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(110)] = { + [sym_identifier] = ACTIONS(420), + [sym_decimal_integer_literal] = ACTIONS(420), + [sym_hex_integer_literal] = ACTIONS(420), + [sym_octal_integer_literal] = ACTIONS(420), + [sym_binary_integer_literal] = ACTIONS(422), + [sym_decimal_floating_point_literal] = ACTIONS(422), + [sym_hex_floating_point_literal] = ACTIONS(420), + [sym_true] = ACTIONS(420), + [sym_false] = ACTIONS(420), + [sym_character_literal] = ACTIONS(422), + [anon_sym_DQUOTE] = ACTIONS(420), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(422), + [anon_sym_RBRACE] = ACTIONS(422), + [sym_null_literal] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(422), + [anon_sym_AMP] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_GT_EQ] = ACTIONS(422), + [anon_sym_LT_EQ] = ACTIONS(422), + [anon_sym_EQ_EQ] = ACTIONS(422), + [anon_sym_BANG_EQ] = ACTIONS(422), + [anon_sym_AMP_AMP] = ACTIONS(422), + [anon_sym_PIPE_PIPE] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_DASH] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(420), + [anon_sym_PIPE] = ACTIONS(420), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(420), + [anon_sym_GT_GT_GT] = ACTIONS(422), + [anon_sym_instanceof] = ACTIONS(420), + [anon_sym_final] = ACTIONS(420), + [anon_sym_DASH_GT] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_COLON] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(420), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(422), + [anon_sym_DASH_DASH] = ACTIONS(422), + [anon_sym_new] = ACTIONS(420), + [anon_sym_LBRACK] = ACTIONS(422), + [anon_sym_RBRACK] = ACTIONS(422), + [anon_sym_DOT] = ACTIONS(420), + [anon_sym_class] = ACTIONS(420), + [anon_sym_COLON_COLON] = ACTIONS(422), + [anon_sym_switch] = ACTIONS(420), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_default] = ACTIONS(420), + [anon_sym_when] = ACTIONS(420), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_assert] = ACTIONS(420), + [anon_sym_do] = ACTIONS(420), + [anon_sym_while] = ACTIONS(420), + [anon_sym_break] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [anon_sym_return] = ACTIONS(420), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_synchronized] = ACTIONS(420), + [anon_sym_throw] = ACTIONS(420), + [anon_sym_try] = ACTIONS(420), + [anon_sym_if] = ACTIONS(420), + [anon_sym_for] = ACTIONS(420), + [anon_sym_AT] = ACTIONS(420), + [anon_sym_open] = ACTIONS(420), + [anon_sym_module] = ACTIONS(420), + [anon_sym_static] = ACTIONS(420), + [anon_sym_package] = ACTIONS(420), + [anon_sym_import] = ACTIONS(420), + [anon_sym_enum] = ACTIONS(420), + [anon_sym_public] = ACTIONS(420), + [anon_sym_protected] = ACTIONS(420), + [anon_sym_private] = ACTIONS(420), + [anon_sym_abstract] = ACTIONS(420), + [anon_sym_strictfp] = ACTIONS(420), + [anon_sym_native] = ACTIONS(420), + [anon_sym_transient] = ACTIONS(420), + [anon_sym_volatile] = ACTIONS(420), + [anon_sym_sealed] = ACTIONS(420), + [anon_sym_non_DASHsealed] = ACTIONS(422), + [anon_sym_record] = ACTIONS(420), + [anon_sym_ATinterface] = ACTIONS(422), + [anon_sym_interface] = ACTIONS(420), + [anon_sym_byte] = ACTIONS(420), + [anon_sym_short] = ACTIONS(420), + [anon_sym_int] = ACTIONS(420), + [anon_sym_long] = ACTIONS(420), + [anon_sym_char] = ACTIONS(420), + [anon_sym_float] = ACTIONS(420), + [anon_sym_double] = ACTIONS(420), + [sym_boolean_type] = ACTIONS(420), + [sym_void_type] = ACTIONS(420), + [sym_this] = ACTIONS(420), + [sym_super] = ACTIONS(420), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(111)] = { + [ts_builtin_sym_end] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [sym_decimal_integer_literal] = ACTIONS(426), + [sym_hex_integer_literal] = ACTIONS(426), + [sym_octal_integer_literal] = ACTIONS(426), + [sym_binary_integer_literal] = ACTIONS(424), + [sym_decimal_floating_point_literal] = ACTIONS(424), + [sym_hex_floating_point_literal] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_character_literal] = ACTIONS(424), + [anon_sym_DQUOTE] = ACTIONS(426), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(424), + [sym_null_literal] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_GT_EQ] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(424), + [anon_sym_EQ_EQ] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_SLASH] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_CARET] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_GT_GT_GT] = ACTIONS(424), + [anon_sym_instanceof] = ACTIONS(426), + [anon_sym_final] = ACTIONS(426), + [anon_sym_DASH_GT] = ACTIONS(424), + [anon_sym_COMMA] = ACTIONS(424), + [anon_sym_QMARK] = ACTIONS(424), + [anon_sym_COLON] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_PLUS_PLUS] = ACTIONS(424), + [anon_sym_DASH_DASH] = ACTIONS(424), + [anon_sym_new] = ACTIONS(426), + [anon_sym_RBRACK] = ACTIONS(424), + [anon_sym_class] = ACTIONS(426), + [anon_sym_switch] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_case] = ACTIONS(426), + [anon_sym_default] = ACTIONS(426), + [anon_sym_when] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_assert] = ACTIONS(426), + [anon_sym_do] = ACTIONS(426), + [anon_sym_while] = ACTIONS(426), + [anon_sym_break] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(426), + [anon_sym_return] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(426), + [anon_sym_synchronized] = ACTIONS(426), + [anon_sym_throw] = ACTIONS(426), + [anon_sym_try] = ACTIONS(426), + [anon_sym_if] = ACTIONS(426), + [anon_sym_else] = ACTIONS(426), + [anon_sym_for] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_open] = ACTIONS(426), + [anon_sym_module] = ACTIONS(426), + [anon_sym_static] = ACTIONS(426), + [anon_sym_package] = ACTIONS(426), + [anon_sym_import] = ACTIONS(426), + [anon_sym_enum] = ACTIONS(426), + [anon_sym_public] = ACTIONS(426), + [anon_sym_protected] = ACTIONS(426), + [anon_sym_private] = ACTIONS(426), + [anon_sym_abstract] = ACTIONS(426), + [anon_sym_strictfp] = ACTIONS(426), + [anon_sym_native] = ACTIONS(426), + [anon_sym_transient] = ACTIONS(426), + [anon_sym_volatile] = ACTIONS(426), + [anon_sym_sealed] = ACTIONS(426), + [anon_sym_non_DASHsealed] = ACTIONS(424), + [anon_sym_record] = ACTIONS(426), + [anon_sym_ATinterface] = ACTIONS(424), + [anon_sym_interface] = ACTIONS(426), + [anon_sym_byte] = ACTIONS(426), + [anon_sym_short] = ACTIONS(426), + [anon_sym_int] = ACTIONS(426), + [anon_sym_long] = ACTIONS(426), + [anon_sym_char] = ACTIONS(426), + [anon_sym_float] = ACTIONS(426), + [anon_sym_double] = ACTIONS(426), + [sym_boolean_type] = ACTIONS(426), + [sym_void_type] = ACTIONS(426), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(112)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(693), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(672), + [sym_marker_annotation] = STATE(672), + [sym_annotation] = STATE(672), + [sym_modifiers] = STATE(779), + [sym__type] = STATE(1013), + [sym__unannotated_type] = STATE(766), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_formal_parameter] = STATE(1030), + [sym_receiver_parameter] = STATE(1196), + [sym_spread_parameter] = STATE(1030), + [aux_sym_array_creation_expression_repeat1] = STATE(730), + [aux_sym_modifiers_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(428), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -23879,138 +25460,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(430), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(23), + [anon_sym_final] = ACTIONS(432), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), - [anon_sym_class] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_default] = ACTIONS(23), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(412), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_synchronized] = ACTIONS(53), - [anon_sym_throw] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(414), - [anon_sym_for] = ACTIONS(416), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_open] = ACTIONS(65), - [anon_sym_module] = ACTIONS(67), - [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_public] = ACTIONS(23), - [anon_sym_protected] = ACTIONS(23), - [anon_sym_private] = ACTIONS(23), - [anon_sym_abstract] = ACTIONS(23), - [anon_sym_strictfp] = ACTIONS(23), - [anon_sym_native] = ACTIONS(23), - [anon_sym_transient] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_default] = ACTIONS(432), + [anon_sym_synchronized] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_static] = ACTIONS(432), + [anon_sym_public] = ACTIONS(432), + [anon_sym_protected] = ACTIONS(432), + [anon_sym_private] = ACTIONS(432), + [anon_sym_abstract] = ACTIONS(432), + [anon_sym_strictfp] = ACTIONS(432), + [anon_sym_native] = ACTIONS(432), + [anon_sym_transient] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym_sealed] = ACTIONS(432), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(121), - [sym_statement] = STATE(276), - [sym_block] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_assert_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_yield_statement] = STATE(373), - [sym_synchronized_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_try_with_resources_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_enhanced_for_statement] = STATE(373), - [sym__annotation] = STATE(574), - [sym_marker_annotation] = STATE(574), - [sym_annotation] = STATE(574), - [sym_declaration] = STATE(373), - [sym_module_declaration] = STATE(310), - [sym_package_declaration] = STATE(310), - [sym_import_declaration] = STATE(310), - [sym_enum_declaration] = STATE(310), - [sym_class_declaration] = STATE(310), - [sym_modifiers] = STATE(773), - [sym_record_declaration] = STATE(310), - [sym_annotation_type_declaration] = STATE(310), - [sym_interface_declaration] = STATE(310), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(769), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(373), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(710), - [aux_sym_modifiers_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(236), + [STATE(113)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(693), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(672), + [sym_marker_annotation] = STATE(672), + [sym_annotation] = STATE(672), + [sym_modifiers] = STATE(779), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(766), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_formal_parameter] = STATE(1030), + [sym_receiver_parameter] = STATE(1196), + [sym_spread_parameter] = STATE(1030), + [aux_sym_array_creation_expression_repeat1] = STATE(730), + [aux_sym_modifiers_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(438), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -24024,108 +25557,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(430), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(23), + [anon_sym_final] = ACTIONS(432), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), - [anon_sym_class] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_default] = ACTIONS(23), - [anon_sym_SEMI] = ACTIONS(37), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(242), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_synchronized] = ACTIONS(53), - [anon_sym_throw] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_if] = ACTIONS(244), - [anon_sym_for] = ACTIONS(246), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_open] = ACTIONS(65), - [anon_sym_module] = ACTIONS(67), - [anon_sym_static] = ACTIONS(23), - [anon_sym_with] = ACTIONS(69), - [anon_sym_package] = ACTIONS(71), - [anon_sym_import] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_public] = ACTIONS(23), - [anon_sym_protected] = ACTIONS(23), - [anon_sym_private] = ACTIONS(23), - [anon_sym_abstract] = ACTIONS(23), - [anon_sym_strictfp] = ACTIONS(23), - [anon_sym_native] = ACTIONS(23), - [anon_sym_transient] = ACTIONS(23), - [anon_sym_volatile] = ACTIONS(23), - [anon_sym_sealed] = ACTIONS(248), - [anon_sym_non_DASHsealed] = ACTIONS(79), - [anon_sym_record] = ACTIONS(81), - [anon_sym_ATinterface] = ACTIONS(83), - [anon_sym_interface] = ACTIONS(85), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_default] = ACTIONS(432), + [anon_sym_synchronized] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_static] = ACTIONS(432), + [anon_sym_public] = ACTIONS(432), + [anon_sym_protected] = ACTIONS(432), + [anon_sym_private] = ACTIONS(432), + [anon_sym_abstract] = ACTIONS(432), + [anon_sym_strictfp] = ACTIONS(432), + [anon_sym_native] = ACTIONS(432), + [anon_sym_transient] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym_sealed] = ACTIONS(432), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(723), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(114)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(693), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(672), + [sym_marker_annotation] = STATE(672), + [sym_annotation] = STATE(672), + [sym_modifiers] = STATE(779), + [sym__type] = STATE(977), + [sym__unannotated_type] = STATE(766), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_formal_parameter] = STATE(1030), + [sym_receiver_parameter] = STATE(1196), + [sym_spread_parameter] = STATE(1030), + [aux_sym_array_creation_expression_repeat1] = STATE(730), + [aux_sym_modifiers_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(428), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -24139,258 +25654,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), + [anon_sym_RPAREN] = ACTIONS(430), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_instanceof] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_final] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(420), - [anon_sym_COLON_COLON] = ACTIONS(422), [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [107] = { - [ts_builtin_sym_end] = ACTIONS(426), - [sym_identifier] = ACTIONS(428), - [sym_decimal_integer_literal] = ACTIONS(428), - [sym_hex_integer_literal] = ACTIONS(428), - [sym_octal_integer_literal] = ACTIONS(428), - [sym_binary_integer_literal] = ACTIONS(426), - [sym_decimal_floating_point_literal] = ACTIONS(426), - [sym_hex_floating_point_literal] = ACTIONS(428), - [sym_true] = ACTIONS(428), - [sym_false] = ACTIONS(428), - [sym_character_literal] = ACTIONS(426), - [anon_sym_DQUOTE] = ACTIONS(428), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(426), - [anon_sym_RBRACE] = ACTIONS(426), - [sym_null_literal] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_RPAREN] = ACTIONS(426), - [anon_sym_AMP] = ACTIONS(428), - [anon_sym_GT] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(428), - [anon_sym_GT_EQ] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(426), - [anon_sym_EQ_EQ] = ACTIONS(426), - [anon_sym_BANG_EQ] = ACTIONS(426), - [anon_sym_AMP_AMP] = ACTIONS(426), - [anon_sym_PIPE_PIPE] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_SLASH] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_CARET] = ACTIONS(426), - [anon_sym_PERCENT] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(426), - [anon_sym_GT_GT] = ACTIONS(428), - [anon_sym_GT_GT_GT] = ACTIONS(426), - [anon_sym_instanceof] = ACTIONS(428), - [anon_sym_final] = ACTIONS(428), - [anon_sym_DASH_GT] = ACTIONS(426), - [anon_sym_COMMA] = ACTIONS(426), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_COLON] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(428), - [anon_sym_TILDE] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_new] = ACTIONS(428), - [anon_sym_LBRACK] = ACTIONS(426), - [anon_sym_RBRACK] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(428), - [anon_sym_class] = ACTIONS(428), - [anon_sym_COLON_COLON] = ACTIONS(426), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(426), - [anon_sym_case] = ACTIONS(428), - [anon_sym_default] = ACTIONS(428), - [anon_sym_when] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_assert] = ACTIONS(428), - [anon_sym_do] = ACTIONS(428), - [anon_sym_while] = ACTIONS(428), - [anon_sym_break] = ACTIONS(428), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_return] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(428), - [anon_sym_synchronized] = ACTIONS(428), - [anon_sym_throw] = ACTIONS(428), - [anon_sym_try] = ACTIONS(428), - [anon_sym_if] = ACTIONS(428), - [anon_sym_else] = ACTIONS(428), - [anon_sym_for] = ACTIONS(428), - [anon_sym_AT] = ACTIONS(428), - [anon_sym_open] = ACTIONS(428), - [anon_sym_module] = ACTIONS(428), - [anon_sym_static] = ACTIONS(428), - [anon_sym_with] = ACTIONS(428), - [anon_sym_package] = ACTIONS(428), - [anon_sym_import] = ACTIONS(428), - [anon_sym_enum] = ACTIONS(428), - [anon_sym_public] = ACTIONS(428), - [anon_sym_protected] = ACTIONS(428), - [anon_sym_private] = ACTIONS(428), - [anon_sym_abstract] = ACTIONS(428), - [anon_sym_strictfp] = ACTIONS(428), - [anon_sym_native] = ACTIONS(428), - [anon_sym_transient] = ACTIONS(428), - [anon_sym_volatile] = ACTIONS(428), - [anon_sym_sealed] = ACTIONS(428), - [anon_sym_non_DASHsealed] = ACTIONS(426), - [anon_sym_record] = ACTIONS(428), - [anon_sym_ATinterface] = ACTIONS(426), - [anon_sym_interface] = ACTIONS(428), - [anon_sym_byte] = ACTIONS(428), - [anon_sym_short] = ACTIONS(428), - [anon_sym_int] = ACTIONS(428), - [anon_sym_long] = ACTIONS(428), - [anon_sym_char] = ACTIONS(428), - [anon_sym_float] = ACTIONS(428), - [anon_sym_double] = ACTIONS(428), - [sym_boolean_type] = ACTIONS(428), - [sym_void_type] = ACTIONS(428), - [sym_this] = ACTIONS(428), - [sym_super] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [108] = { - [ts_builtin_sym_end] = ACTIONS(430), - [sym_identifier] = ACTIONS(432), - [sym_decimal_integer_literal] = ACTIONS(432), - [sym_hex_integer_literal] = ACTIONS(432), - [sym_octal_integer_literal] = ACTIONS(432), - [sym_binary_integer_literal] = ACTIONS(430), - [sym_decimal_floating_point_literal] = ACTIONS(430), - [sym_hex_floating_point_literal] = ACTIONS(432), - [sym_true] = ACTIONS(432), - [sym_false] = ACTIONS(432), - [sym_character_literal] = ACTIONS(430), - [anon_sym_DQUOTE] = ACTIONS(432), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [sym_null_literal] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_RPAREN] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(432), - [anon_sym_GT_EQ] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(430), - [anon_sym_EQ_EQ] = ACTIONS(430), - [anon_sym_BANG_EQ] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(430), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(430), - [anon_sym_PERCENT] = ACTIONS(430), - [anon_sym_LT_LT] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(430), - [anon_sym_instanceof] = ACTIONS(432), - [anon_sym_final] = ACTIONS(432), - [anon_sym_DASH_GT] = ACTIONS(430), - [anon_sym_COMMA] = ACTIONS(430), - [anon_sym_QMARK] = ACTIONS(430), - [anon_sym_COLON] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_TILDE] = ACTIONS(430), - [anon_sym_PLUS_PLUS] = ACTIONS(430), - [anon_sym_DASH_DASH] = ACTIONS(430), - [anon_sym_new] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(430), - [anon_sym_RBRACK] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_class] = ACTIONS(432), - [anon_sym_COLON_COLON] = ACTIONS(430), - [anon_sym_switch] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_case] = ACTIONS(432), [anon_sym_default] = ACTIONS(432), - [anon_sym_when] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_assert] = ACTIONS(432), - [anon_sym_do] = ACTIONS(432), - [anon_sym_while] = ACTIONS(432), - [anon_sym_break] = ACTIONS(432), - [anon_sym_continue] = ACTIONS(432), - [anon_sym_return] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(432), [anon_sym_synchronized] = ACTIONS(432), - [anon_sym_throw] = ACTIONS(432), - [anon_sym_try] = ACTIONS(432), - [anon_sym_if] = ACTIONS(432), - [anon_sym_else] = ACTIONS(432), - [anon_sym_for] = ACTIONS(432), - [anon_sym_AT] = ACTIONS(432), - [anon_sym_open] = ACTIONS(432), - [anon_sym_module] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(434), [anon_sym_static] = ACTIONS(432), - [anon_sym_with] = ACTIONS(432), - [anon_sym_package] = ACTIONS(432), - [anon_sym_import] = ACTIONS(432), - [anon_sym_enum] = ACTIONS(432), [anon_sym_public] = ACTIONS(432), [anon_sym_protected] = ACTIONS(432), [anon_sym_private] = ACTIONS(432), @@ -24400,184 +25677,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_transient] = ACTIONS(432), [anon_sym_volatile] = ACTIONS(432), [anon_sym_sealed] = ACTIONS(432), - [anon_sym_non_DASHsealed] = ACTIONS(430), - [anon_sym_record] = ACTIONS(432), - [anon_sym_ATinterface] = ACTIONS(430), - [anon_sym_interface] = ACTIONS(432), - [anon_sym_byte] = ACTIONS(432), - [anon_sym_short] = ACTIONS(432), - [anon_sym_int] = ACTIONS(432), - [anon_sym_long] = ACTIONS(432), - [anon_sym_char] = ACTIONS(432), - [anon_sym_float] = ACTIONS(432), - [anon_sym_double] = ACTIONS(432), - [sym_boolean_type] = ACTIONS(432), - [sym_void_type] = ACTIONS(432), - [sym_this] = ACTIONS(432), - [sym_super] = ACTIONS(432), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [109] = { - [ts_builtin_sym_end] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), - [sym_decimal_integer_literal] = ACTIONS(436), - [sym_hex_integer_literal] = ACTIONS(436), - [sym_octal_integer_literal] = ACTIONS(436), - [sym_binary_integer_literal] = ACTIONS(434), - [sym_decimal_floating_point_literal] = ACTIONS(434), - [sym_hex_floating_point_literal] = ACTIONS(436), - [sym_true] = ACTIONS(436), - [sym_false] = ACTIONS(436), - [sym_character_literal] = ACTIONS(434), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(434), - [sym_null_literal] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(434), - [anon_sym_RPAREN] = ACTIONS(434), - [anon_sym_AMP] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(436), - [anon_sym_GT_EQ] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(434), - [anon_sym_EQ_EQ] = ACTIONS(434), - [anon_sym_BANG_EQ] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(434), - [anon_sym_PERCENT] = ACTIONS(434), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_GT_GT_GT] = ACTIONS(434), - [anon_sym_instanceof] = ACTIONS(436), - [anon_sym_final] = ACTIONS(436), - [anon_sym_DASH_GT] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(434), - [anon_sym_QMARK] = ACTIONS(434), - [anon_sym_COLON] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(434), - [anon_sym_DASH_DASH] = ACTIONS(434), - [anon_sym_new] = ACTIONS(436), - [anon_sym_RBRACK] = ACTIONS(434), - [anon_sym_class] = ACTIONS(436), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(436), - [anon_sym_when] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(434), - [anon_sym_assert] = ACTIONS(436), - [anon_sym_do] = ACTIONS(436), - [anon_sym_while] = ACTIONS(436), - [anon_sym_break] = ACTIONS(436), - [anon_sym_continue] = ACTIONS(436), - [anon_sym_return] = ACTIONS(436), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_synchronized] = ACTIONS(436), - [anon_sym_throw] = ACTIONS(436), - [anon_sym_try] = ACTIONS(436), - [anon_sym_if] = ACTIONS(436), - [anon_sym_else] = ACTIONS(436), - [anon_sym_for] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_open] = ACTIONS(436), - [anon_sym_module] = ACTIONS(436), - [anon_sym_static] = ACTIONS(436), - [anon_sym_with] = ACTIONS(436), - [anon_sym_package] = ACTIONS(436), - [anon_sym_import] = ACTIONS(436), - [anon_sym_enum] = ACTIONS(436), - [anon_sym_public] = ACTIONS(436), - [anon_sym_protected] = ACTIONS(436), - [anon_sym_private] = ACTIONS(436), - [anon_sym_abstract] = ACTIONS(436), - [anon_sym_strictfp] = ACTIONS(436), - [anon_sym_native] = ACTIONS(436), - [anon_sym_transient] = ACTIONS(436), - [anon_sym_volatile] = ACTIONS(436), - [anon_sym_sealed] = ACTIONS(436), - [anon_sym_non_DASHsealed] = ACTIONS(434), - [anon_sym_record] = ACTIONS(436), - [anon_sym_ATinterface] = ACTIONS(434), - [anon_sym_interface] = ACTIONS(436), - [anon_sym_byte] = ACTIONS(436), - [anon_sym_short] = ACTIONS(436), - [anon_sym_int] = ACTIONS(436), - [anon_sym_long] = ACTIONS(436), - [anon_sym_char] = ACTIONS(436), - [anon_sym_float] = ACTIONS(436), - [anon_sym_double] = ACTIONS(436), - [sym_boolean_type] = ACTIONS(436), - [sym_void_type] = ACTIONS(436), - [sym_this] = ACTIONS(436), - [sym_super] = ACTIONS(436), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [ts_builtin_sym_end] = ACTIONS(438), + [STATE(115)] = { [sym_identifier] = ACTIONS(440), [sym_decimal_integer_literal] = ACTIONS(440), [sym_hex_integer_literal] = ACTIONS(440), [sym_octal_integer_literal] = ACTIONS(440), - [sym_binary_integer_literal] = ACTIONS(438), - [sym_decimal_floating_point_literal] = ACTIONS(438), + [sym_binary_integer_literal] = ACTIONS(442), + [sym_decimal_floating_point_literal] = ACTIONS(442), [sym_hex_floating_point_literal] = ACTIONS(440), [sym_true] = ACTIONS(440), [sym_false] = ACTIONS(440), - [sym_character_literal] = ACTIONS(438), + [sym_character_literal] = ACTIONS(442), [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), - [anon_sym_RBRACE] = ACTIONS(438), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), [sym_null_literal] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(438), - [anon_sym_RPAREN] = ACTIONS(438), - [anon_sym_AMP] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(440), - [anon_sym_GT_EQ] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(438), - [anon_sym_EQ_EQ] = ACTIONS(438), - [anon_sym_BANG_EQ] = ACTIONS(438), - [anon_sym_AMP_AMP] = ACTIONS(438), - [anon_sym_PIPE_PIPE] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(440), - [anon_sym_CARET] = ACTIONS(438), - [anon_sym_PERCENT] = ACTIONS(438), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_GT_GT_GT] = ACTIONS(438), - [anon_sym_instanceof] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(446), + [anon_sym_LT_EQ] = ACTIONS(446), + [anon_sym_EQ_EQ] = ACTIONS(446), + [anon_sym_BANG_EQ] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(446), + [anon_sym_PIPE_PIPE] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_GT_GT] = ACTIONS(444), + [anon_sym_GT_GT_GT] = ACTIONS(446), + [anon_sym_instanceof] = ACTIONS(444), [anon_sym_final] = ACTIONS(440), - [anon_sym_DASH_GT] = ACTIONS(438), - [anon_sym_COMMA] = ACTIONS(438), - [anon_sym_QMARK] = ACTIONS(438), - [anon_sym_COLON] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(446), [anon_sym_BANG] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(438), - [anon_sym_PLUS_PLUS] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(451), [anon_sym_new] = ACTIONS(440), - [anon_sym_RBRACK] = ACTIONS(438), [anon_sym_class] = ACTIONS(440), [anon_sym_switch] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(442), [anon_sym_case] = ACTIONS(440), [anon_sym_default] = ACTIONS(440), - [anon_sym_when] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(451), [anon_sym_assert] = ACTIONS(440), [anon_sym_do] = ACTIONS(440), [anon_sym_while] = ACTIONS(440), @@ -24595,7 +25758,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_open] = ACTIONS(440), [anon_sym_module] = ACTIONS(440), [anon_sym_static] = ACTIONS(440), - [anon_sym_with] = ACTIONS(440), [anon_sym_package] = ACTIONS(440), [anon_sym_import] = ACTIONS(440), [anon_sym_enum] = ACTIONS(440), @@ -24608,9 +25770,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_transient] = ACTIONS(440), [anon_sym_volatile] = ACTIONS(440), [anon_sym_sealed] = ACTIONS(440), - [anon_sym_non_DASHsealed] = ACTIONS(438), + [anon_sym_non_DASHsealed] = ACTIONS(442), [anon_sym_record] = ACTIONS(440), - [anon_sym_ATinterface] = ACTIONS(438), + [anon_sym_ATinterface] = ACTIONS(442), [anon_sym_interface] = ACTIONS(440), [anon_sym_byte] = ACTIONS(440), [anon_sym_short] = ACTIONS(440), @@ -24626,469 +25788,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [111] = { - [ts_builtin_sym_end] = ACTIONS(442), - [sym_identifier] = ACTIONS(444), - [sym_decimal_integer_literal] = ACTIONS(444), - [sym_hex_integer_literal] = ACTIONS(444), - [sym_octal_integer_literal] = ACTIONS(444), - [sym_binary_integer_literal] = ACTIONS(442), - [sym_decimal_floating_point_literal] = ACTIONS(442), - [sym_hex_floating_point_literal] = ACTIONS(444), - [sym_true] = ACTIONS(444), - [sym_false] = ACTIONS(444), - [sym_character_literal] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(444), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(442), - [anon_sym_RBRACE] = ACTIONS(442), - [sym_null_literal] = ACTIONS(444), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(444), - [anon_sym_GT] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_GT_EQ] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(442), - [anon_sym_EQ_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_PERCENT] = ACTIONS(442), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(444), - [anon_sym_GT_GT_GT] = ACTIONS(442), - [anon_sym_instanceof] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_DASH_GT] = ACTIONS(442), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_QMARK] = ACTIONS(442), - [anon_sym_COLON] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(442), - [anon_sym_DASH_DASH] = ACTIONS(442), - [anon_sym_new] = ACTIONS(444), - [anon_sym_RBRACK] = ACTIONS(442), - [anon_sym_class] = ACTIONS(444), - [anon_sym_switch] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(442), - [anon_sym_case] = ACTIONS(444), - [anon_sym_default] = ACTIONS(444), - [anon_sym_when] = ACTIONS(444), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_assert] = ACTIONS(444), - [anon_sym_do] = ACTIONS(444), - [anon_sym_while] = ACTIONS(444), - [anon_sym_break] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(444), - [anon_sym_return] = ACTIONS(444), - [anon_sym_yield] = ACTIONS(444), - [anon_sym_synchronized] = ACTIONS(444), - [anon_sym_throw] = ACTIONS(444), - [anon_sym_try] = ACTIONS(444), - [anon_sym_if] = ACTIONS(444), - [anon_sym_else] = ACTIONS(444), - [anon_sym_for] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(444), - [anon_sym_open] = ACTIONS(444), - [anon_sym_module] = ACTIONS(444), - [anon_sym_static] = ACTIONS(444), - [anon_sym_with] = ACTIONS(444), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_enum] = ACTIONS(444), - [anon_sym_public] = ACTIONS(444), - [anon_sym_protected] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_strictfp] = ACTIONS(444), - [anon_sym_native] = ACTIONS(444), - [anon_sym_transient] = ACTIONS(444), - [anon_sym_volatile] = ACTIONS(444), - [anon_sym_sealed] = ACTIONS(444), - [anon_sym_non_DASHsealed] = ACTIONS(442), - [anon_sym_record] = ACTIONS(444), - [anon_sym_ATinterface] = ACTIONS(442), - [anon_sym_interface] = ACTIONS(444), - [anon_sym_byte] = ACTIONS(444), - [anon_sym_short] = ACTIONS(444), - [anon_sym_int] = ACTIONS(444), - [anon_sym_long] = ACTIONS(444), - [anon_sym_char] = ACTIONS(444), - [anon_sym_float] = ACTIONS(444), - [anon_sym_double] = ACTIONS(444), - [sym_boolean_type] = ACTIONS(444), - [sym_void_type] = ACTIONS(444), - [sym_this] = ACTIONS(444), - [sym_super] = ACTIONS(444), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [112] = { - [ts_builtin_sym_end] = ACTIONS(446), - [sym_identifier] = ACTIONS(448), - [sym_decimal_integer_literal] = ACTIONS(448), - [sym_hex_integer_literal] = ACTIONS(448), - [sym_octal_integer_literal] = ACTIONS(448), - [sym_binary_integer_literal] = ACTIONS(446), - [sym_decimal_floating_point_literal] = ACTIONS(446), - [sym_hex_floating_point_literal] = ACTIONS(448), - [sym_true] = ACTIONS(448), - [sym_false] = ACTIONS(448), - [sym_character_literal] = ACTIONS(446), - [anon_sym_DQUOTE] = ACTIONS(448), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [sym_null_literal] = ACTIONS(448), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_RPAREN] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_GT] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_GT_EQ] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(446), - [anon_sym_EQ_EQ] = ACTIONS(446), - [anon_sym_BANG_EQ] = ACTIONS(446), - [anon_sym_AMP_AMP] = ACTIONS(446), - [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(446), - [anon_sym_PERCENT] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_GT_GT] = ACTIONS(448), - [anon_sym_GT_GT_GT] = ACTIONS(446), - [anon_sym_instanceof] = ACTIONS(448), - [anon_sym_final] = ACTIONS(448), - [anon_sym_DASH_GT] = ACTIONS(446), - [anon_sym_COMMA] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(446), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [anon_sym_new] = ACTIONS(448), - [anon_sym_RBRACK] = ACTIONS(446), - [anon_sym_class] = ACTIONS(448), - [anon_sym_switch] = ACTIONS(448), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_case] = ACTIONS(448), - [anon_sym_default] = ACTIONS(448), - [anon_sym_when] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_assert] = ACTIONS(448), - [anon_sym_do] = ACTIONS(448), - [anon_sym_while] = ACTIONS(448), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(448), - [anon_sym_return] = ACTIONS(448), - [anon_sym_yield] = ACTIONS(448), - [anon_sym_synchronized] = ACTIONS(448), - [anon_sym_throw] = ACTIONS(448), - [anon_sym_try] = ACTIONS(448), - [anon_sym_if] = ACTIONS(448), - [anon_sym_else] = ACTIONS(448), - [anon_sym_for] = ACTIONS(448), - [anon_sym_AT] = ACTIONS(448), - [anon_sym_open] = ACTIONS(448), - [anon_sym_module] = ACTIONS(448), - [anon_sym_static] = ACTIONS(448), - [anon_sym_with] = ACTIONS(448), - [anon_sym_package] = ACTIONS(448), - [anon_sym_import] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_public] = ACTIONS(448), - [anon_sym_protected] = ACTIONS(448), - [anon_sym_private] = ACTIONS(448), - [anon_sym_abstract] = ACTIONS(448), - [anon_sym_strictfp] = ACTIONS(448), - [anon_sym_native] = ACTIONS(448), - [anon_sym_transient] = ACTIONS(448), - [anon_sym_volatile] = ACTIONS(448), - [anon_sym_sealed] = ACTIONS(448), - [anon_sym_non_DASHsealed] = ACTIONS(446), - [anon_sym_record] = ACTIONS(448), - [anon_sym_ATinterface] = ACTIONS(446), - [anon_sym_interface] = ACTIONS(448), - [anon_sym_byte] = ACTIONS(448), - [anon_sym_short] = ACTIONS(448), - [anon_sym_int] = ACTIONS(448), - [anon_sym_long] = ACTIONS(448), - [anon_sym_char] = ACTIONS(448), - [anon_sym_float] = ACTIONS(448), - [anon_sym_double] = ACTIONS(448), - [sym_boolean_type] = ACTIONS(448), - [sym_void_type] = ACTIONS(448), - [sym_this] = ACTIONS(448), - [sym_super] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [113] = { - [sym_identifier] = ACTIONS(450), - [sym_decimal_integer_literal] = ACTIONS(450), - [sym_hex_integer_literal] = ACTIONS(450), - [sym_octal_integer_literal] = ACTIONS(450), - [sym_binary_integer_literal] = ACTIONS(452), - [sym_decimal_floating_point_literal] = ACTIONS(452), - [sym_hex_floating_point_literal] = ACTIONS(450), - [sym_true] = ACTIONS(450), - [sym_false] = ACTIONS(450), - [sym_character_literal] = ACTIONS(452), - [anon_sym_DQUOTE] = ACTIONS(450), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(452), - [anon_sym_RBRACE] = ACTIONS(452), - [sym_null_literal] = ACTIONS(450), - [anon_sym_LPAREN] = ACTIONS(452), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(450), - [anon_sym_GT] = ACTIONS(450), - [anon_sym_LT] = ACTIONS(450), - [anon_sym_GT_EQ] = ACTIONS(452), - [anon_sym_LT_EQ] = ACTIONS(452), - [anon_sym_EQ_EQ] = ACTIONS(452), - [anon_sym_BANG_EQ] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(452), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_LT_LT] = ACTIONS(452), - [anon_sym_GT_GT] = ACTIONS(450), - [anon_sym_GT_GT_GT] = ACTIONS(452), - [anon_sym_instanceof] = ACTIONS(450), - [anon_sym_final] = ACTIONS(450), - [anon_sym_DASH_GT] = ACTIONS(452), - [anon_sym_COMMA] = ACTIONS(452), - [anon_sym_QMARK] = ACTIONS(452), - [anon_sym_COLON] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_TILDE] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(452), - [anon_sym_DASH_DASH] = ACTIONS(452), - [anon_sym_new] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(452), - [anon_sym_RBRACK] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(450), - [anon_sym_class] = ACTIONS(450), - [anon_sym_COLON_COLON] = ACTIONS(452), - [anon_sym_switch] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(452), - [anon_sym_default] = ACTIONS(450), - [anon_sym_when] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_assert] = ACTIONS(450), - [anon_sym_do] = ACTIONS(450), - [anon_sym_while] = ACTIONS(450), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_return] = ACTIONS(450), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_synchronized] = ACTIONS(450), - [anon_sym_throw] = ACTIONS(450), - [anon_sym_try] = ACTIONS(450), - [anon_sym_if] = ACTIONS(450), - [anon_sym_for] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(450), - [anon_sym_open] = ACTIONS(450), - [anon_sym_module] = ACTIONS(450), - [anon_sym_static] = ACTIONS(450), - [anon_sym_with] = ACTIONS(450), - [anon_sym_package] = ACTIONS(450), - [anon_sym_import] = ACTIONS(450), - [anon_sym_enum] = ACTIONS(450), - [anon_sym_public] = ACTIONS(450), - [anon_sym_protected] = ACTIONS(450), - [anon_sym_private] = ACTIONS(450), - [anon_sym_abstract] = ACTIONS(450), - [anon_sym_strictfp] = ACTIONS(450), - [anon_sym_native] = ACTIONS(450), - [anon_sym_transient] = ACTIONS(450), - [anon_sym_volatile] = ACTIONS(450), - [anon_sym_sealed] = ACTIONS(450), - [anon_sym_non_DASHsealed] = ACTIONS(452), - [anon_sym_record] = ACTIONS(450), - [anon_sym_ATinterface] = ACTIONS(452), - [anon_sym_interface] = ACTIONS(450), - [anon_sym_byte] = ACTIONS(450), - [anon_sym_short] = ACTIONS(450), - [anon_sym_int] = ACTIONS(450), - [anon_sym_long] = ACTIONS(450), - [anon_sym_char] = ACTIONS(450), - [anon_sym_float] = ACTIONS(450), - [anon_sym_double] = ACTIONS(450), - [sym_boolean_type] = ACTIONS(450), - [sym_void_type] = ACTIONS(450), - [sym_this] = ACTIONS(450), - [sym_super] = ACTIONS(450), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [114] = { - [ts_builtin_sym_end] = ACTIONS(454), - [sym_identifier] = ACTIONS(456), - [sym_decimal_integer_literal] = ACTIONS(456), - [sym_hex_integer_literal] = ACTIONS(456), - [sym_octal_integer_literal] = ACTIONS(456), - [sym_binary_integer_literal] = ACTIONS(454), - [sym_decimal_floating_point_literal] = ACTIONS(454), - [sym_hex_floating_point_literal] = ACTIONS(456), - [sym_true] = ACTIONS(456), - [sym_false] = ACTIONS(456), - [sym_character_literal] = ACTIONS(454), - [anon_sym_DQUOTE] = ACTIONS(456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [sym_null_literal] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(454), - [anon_sym_PERCENT] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(454), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_GT_GT_GT] = ACTIONS(454), - [anon_sym_instanceof] = ACTIONS(456), - [anon_sym_final] = ACTIONS(456), - [anon_sym_DASH_GT] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_COLON] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_PLUS_PLUS] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(454), - [anon_sym_new] = ACTIONS(456), - [anon_sym_RBRACK] = ACTIONS(454), - [anon_sym_class] = ACTIONS(456), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_case] = ACTIONS(456), - [anon_sym_default] = ACTIONS(456), - [anon_sym_when] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_assert] = ACTIONS(456), - [anon_sym_do] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_synchronized] = ACTIONS(456), - [anon_sym_throw] = ACTIONS(456), - [anon_sym_try] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_AT] = ACTIONS(456), - [anon_sym_open] = ACTIONS(456), - [anon_sym_module] = ACTIONS(456), - [anon_sym_static] = ACTIONS(456), - [anon_sym_with] = ACTIONS(456), - [anon_sym_package] = ACTIONS(456), - [anon_sym_import] = ACTIONS(456), - [anon_sym_enum] = ACTIONS(456), - [anon_sym_public] = ACTIONS(456), - [anon_sym_protected] = ACTIONS(456), - [anon_sym_private] = ACTIONS(456), - [anon_sym_abstract] = ACTIONS(456), - [anon_sym_strictfp] = ACTIONS(456), - [anon_sym_native] = ACTIONS(456), - [anon_sym_transient] = ACTIONS(456), - [anon_sym_volatile] = ACTIONS(456), - [anon_sym_sealed] = ACTIONS(456), - [anon_sym_non_DASHsealed] = ACTIONS(454), - [anon_sym_record] = ACTIONS(456), - [anon_sym_ATinterface] = ACTIONS(454), - [anon_sym_interface] = ACTIONS(456), - [anon_sym_byte] = ACTIONS(456), - [anon_sym_short] = ACTIONS(456), - [anon_sym_int] = ACTIONS(456), - [anon_sym_long] = ACTIONS(456), - [anon_sym_char] = ACTIONS(456), - [anon_sym_float] = ACTIONS(456), - [anon_sym_double] = ACTIONS(456), - [sym_boolean_type] = ACTIONS(456), - [sym_void_type] = ACTIONS(456), - [sym_this] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [115] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(719), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(827), - [sym__type] = STATE(1015), - [sym__unannotated_type] = STATE(706), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_formal_parameter] = STATE(1109), - [sym_receiver_parameter] = STATE(1200), - [sym_spread_parameter] = STATE(1109), - [sym__reserved_identifier] = STATE(441), - [aux_sym_array_creation_expression_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(458), + [STATE(116)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(661), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(672), + [sym_marker_annotation] = STATE(672), + [sym_annotation] = STATE(672), + [sym_modifiers] = STATE(781), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(791), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(317), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [aux_sym_modifiers_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25102,96 +25845,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(460), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), + [anon_sym_final] = ACTIONS(432), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), - [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_default] = ACTIONS(432), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_synchronized] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_static] = ACTIONS(432), + [anon_sym_public] = ACTIONS(432), + [anon_sym_protected] = ACTIONS(432), + [anon_sym_private] = ACTIONS(432), + [anon_sym_abstract] = ACTIONS(432), + [anon_sym_strictfp] = ACTIONS(432), + [anon_sym_native] = ACTIONS(432), + [anon_sym_transient] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym_sealed] = ACTIONS(432), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(719), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(827), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(706), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_formal_parameter] = STATE(1109), - [sym_receiver_parameter] = STATE(1200), - [sym_spread_parameter] = STATE(1109), - [sym__reserved_identifier] = STATE(441), - [aux_sym_array_creation_expression_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(470), + [STATE(117)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(625), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(672), + [sym_marker_annotation] = STATE(672), + [sym_annotation] = STATE(672), + [sym_modifiers] = STATE(776), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(782), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [aux_sym_modifiers_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25205,96 +25940,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(460), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), + [anon_sym_final] = ACTIONS(432), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), - [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_default] = ACTIONS(432), + [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_synchronized] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_static] = ACTIONS(432), + [anon_sym_public] = ACTIONS(432), + [anon_sym_protected] = ACTIONS(432), + [anon_sym_private] = ACTIONS(432), + [anon_sym_abstract] = ACTIONS(432), + [anon_sym_strictfp] = ACTIONS(432), + [anon_sym_native] = ACTIONS(432), + [anon_sym_transient] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym_sealed] = ACTIONS(432), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(719), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(827), - [sym__type] = STATE(1056), - [sym__unannotated_type] = STATE(706), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_formal_parameter] = STATE(1109), - [sym_receiver_parameter] = STATE(1200), - [sym_spread_parameter] = STATE(1109), - [sym__reserved_identifier] = STATE(441), - [aux_sym_array_creation_expression_repeat1] = STATE(791), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(458), + [STATE(118)] = { + [ts_builtin_sym_end] = ACTIONS(442), + [sym_identifier] = ACTIONS(440), + [sym_decimal_integer_literal] = ACTIONS(440), + [sym_hex_integer_literal] = ACTIONS(440), + [sym_octal_integer_literal] = ACTIONS(440), + [sym_binary_integer_literal] = ACTIONS(442), + [sym_decimal_floating_point_literal] = ACTIONS(442), + [sym_hex_floating_point_literal] = ACTIONS(440), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_character_literal] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(442), + [sym_null_literal] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_GT_EQ] = ACTIONS(446), + [anon_sym_LT_EQ] = ACTIONS(446), + [anon_sym_EQ_EQ] = ACTIONS(446), + [anon_sym_BANG_EQ] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(446), + [anon_sym_PIPE_PIPE] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_GT_GT] = ACTIONS(444), + [anon_sym_GT_GT_GT] = ACTIONS(446), + [anon_sym_instanceof] = ACTIONS(444), + [anon_sym_final] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(446), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_new] = ACTIONS(440), + [anon_sym_class] = ACTIONS(440), + [anon_sym_switch] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_default] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_assert] = ACTIONS(440), + [anon_sym_do] = ACTIONS(440), + [anon_sym_while] = ACTIONS(440), + [anon_sym_break] = ACTIONS(440), + [anon_sym_continue] = ACTIONS(440), + [anon_sym_return] = ACTIONS(440), + [anon_sym_yield] = ACTIONS(440), + [anon_sym_synchronized] = ACTIONS(440), + [anon_sym_throw] = ACTIONS(440), + [anon_sym_try] = ACTIONS(440), + [anon_sym_if] = ACTIONS(440), + [anon_sym_else] = ACTIONS(440), + [anon_sym_for] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(440), + [anon_sym_open] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_static] = ACTIONS(440), + [anon_sym_package] = ACTIONS(440), + [anon_sym_import] = ACTIONS(440), + [anon_sym_enum] = ACTIONS(440), + [anon_sym_public] = ACTIONS(440), + [anon_sym_protected] = ACTIONS(440), + [anon_sym_private] = ACTIONS(440), + [anon_sym_abstract] = ACTIONS(440), + [anon_sym_strictfp] = ACTIONS(440), + [anon_sym_native] = ACTIONS(440), + [anon_sym_transient] = ACTIONS(440), + [anon_sym_volatile] = ACTIONS(440), + [anon_sym_sealed] = ACTIONS(440), + [anon_sym_non_DASHsealed] = ACTIONS(442), + [anon_sym_record] = ACTIONS(440), + [anon_sym_ATinterface] = ACTIONS(442), + [anon_sym_interface] = ACTIONS(440), + [anon_sym_byte] = ACTIONS(440), + [anon_sym_short] = ACTIONS(440), + [anon_sym_int] = ACTIONS(440), + [anon_sym_long] = ACTIONS(440), + [anon_sym_char] = ACTIONS(440), + [anon_sym_float] = ACTIONS(440), + [anon_sym_double] = ACTIONS(440), + [sym_boolean_type] = ACTIONS(440), + [sym_void_type] = ACTIONS(440), + [sym_this] = ACTIONS(440), + [sym_super] = ACTIONS(440), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(119)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(639), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(672), + [sym_marker_annotation] = STATE(672), + [sym_annotation] = STATE(672), + [sym_modifiers] = STATE(780), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(794), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [sym_local_variable_declaration] = STATE(320), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [aux_sym_modifiers_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25308,94 +26130,423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(460), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), + [anon_sym_final] = ACTIONS(432), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), + [anon_sym_default] = ACTIONS(432), + [anon_sym_SEMI] = ACTIONS(460), + [anon_sym_synchronized] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_static] = ACTIONS(432), + [anon_sym_public] = ACTIONS(432), + [anon_sym_protected] = ACTIONS(432), + [anon_sym_private] = ACTIONS(432), + [anon_sym_abstract] = ACTIONS(432), + [anon_sym_strictfp] = ACTIONS(432), + [anon_sym_native] = ACTIONS(432), + [anon_sym_transient] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym_sealed] = ACTIONS(432), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(120)] = { + [sym_catch_clause] = STATE(123), + [sym_finally_clause] = STATE(217), + [aux_sym_try_statement_repeat1] = STATE(123), + [ts_builtin_sym_end] = ACTIONS(462), + [sym_identifier] = ACTIONS(464), + [sym_decimal_integer_literal] = ACTIONS(464), + [sym_hex_integer_literal] = ACTIONS(464), + [sym_octal_integer_literal] = ACTIONS(464), + [sym_binary_integer_literal] = ACTIONS(462), + [sym_decimal_floating_point_literal] = ACTIONS(462), + [sym_hex_floating_point_literal] = ACTIONS(464), + [sym_true] = ACTIONS(464), + [sym_false] = ACTIONS(464), + [sym_character_literal] = ACTIONS(462), + [anon_sym_DQUOTE] = ACTIONS(464), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [sym_null_literal] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LT] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_final] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(462), + [anon_sym_TILDE] = ACTIONS(462), + [anon_sym_PLUS_PLUS] = ACTIONS(462), + [anon_sym_DASH_DASH] = ACTIONS(462), + [anon_sym_new] = ACTIONS(464), + [anon_sym_class] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_case] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_assert] = ACTIONS(464), + [anon_sym_do] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [anon_sym_break] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_synchronized] = ACTIONS(464), + [anon_sym_throw] = ACTIONS(464), + [anon_sym_try] = ACTIONS(464), + [anon_sym_catch] = ACTIONS(466), + [anon_sym_finally] = ACTIONS(468), + [anon_sym_if] = ACTIONS(464), + [anon_sym_else] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), [anon_sym_AT] = ACTIONS(464), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), - [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_open] = ACTIONS(464), + [anon_sym_module] = ACTIONS(464), + [anon_sym_static] = ACTIONS(464), + [anon_sym_package] = ACTIONS(464), + [anon_sym_import] = ACTIONS(464), + [anon_sym_enum] = ACTIONS(464), + [anon_sym_public] = ACTIONS(464), + [anon_sym_protected] = ACTIONS(464), + [anon_sym_private] = ACTIONS(464), + [anon_sym_abstract] = ACTIONS(464), + [anon_sym_strictfp] = ACTIONS(464), + [anon_sym_native] = ACTIONS(464), + [anon_sym_transient] = ACTIONS(464), + [anon_sym_volatile] = ACTIONS(464), + [anon_sym_sealed] = ACTIONS(464), + [anon_sym_non_DASHsealed] = ACTIONS(462), + [anon_sym_record] = ACTIONS(464), + [anon_sym_ATinterface] = ACTIONS(462), + [anon_sym_interface] = ACTIONS(464), + [anon_sym_byte] = ACTIONS(464), + [anon_sym_short] = ACTIONS(464), + [anon_sym_int] = ACTIONS(464), + [anon_sym_long] = ACTIONS(464), + [anon_sym_char] = ACTIONS(464), + [anon_sym_float] = ACTIONS(464), + [anon_sym_double] = ACTIONS(464), + [sym_boolean_type] = ACTIONS(464), + [sym_void_type] = ACTIONS(464), + [sym_this] = ACTIONS(464), + [sym_super] = ACTIONS(464), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(652), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(829), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(764), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(161), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(418), + [STATE(121)] = { + [sym_catch_clause] = STATE(122), + [sym_finally_clause] = STATE(279), + [aux_sym_try_statement_repeat1] = STATE(122), + [ts_builtin_sym_end] = ACTIONS(470), + [sym_identifier] = ACTIONS(472), + [sym_decimal_integer_literal] = ACTIONS(472), + [sym_hex_integer_literal] = ACTIONS(472), + [sym_octal_integer_literal] = ACTIONS(472), + [sym_binary_integer_literal] = ACTIONS(470), + [sym_decimal_floating_point_literal] = ACTIONS(470), + [sym_hex_floating_point_literal] = ACTIONS(472), + [sym_true] = ACTIONS(472), + [sym_false] = ACTIONS(472), + [sym_character_literal] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(470), + [sym_null_literal] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_final] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(470), + [anon_sym_new] = ACTIONS(472), + [anon_sym_class] = ACTIONS(472), + [anon_sym_switch] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_case] = ACTIONS(472), + [anon_sym_default] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_assert] = ACTIONS(472), + [anon_sym_do] = ACTIONS(472), + [anon_sym_while] = ACTIONS(472), + [anon_sym_break] = ACTIONS(472), + [anon_sym_continue] = ACTIONS(472), + [anon_sym_return] = ACTIONS(472), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_synchronized] = ACTIONS(472), + [anon_sym_throw] = ACTIONS(472), + [anon_sym_try] = ACTIONS(472), + [anon_sym_catch] = ACTIONS(466), + [anon_sym_finally] = ACTIONS(468), + [anon_sym_if] = ACTIONS(472), + [anon_sym_else] = ACTIONS(472), + [anon_sym_for] = ACTIONS(472), + [anon_sym_AT] = ACTIONS(472), + [anon_sym_open] = ACTIONS(472), + [anon_sym_module] = ACTIONS(472), + [anon_sym_static] = ACTIONS(472), + [anon_sym_package] = ACTIONS(472), + [anon_sym_import] = ACTIONS(472), + [anon_sym_enum] = ACTIONS(472), + [anon_sym_public] = ACTIONS(472), + [anon_sym_protected] = ACTIONS(472), + [anon_sym_private] = ACTIONS(472), + [anon_sym_abstract] = ACTIONS(472), + [anon_sym_strictfp] = ACTIONS(472), + [anon_sym_native] = ACTIONS(472), + [anon_sym_transient] = ACTIONS(472), + [anon_sym_volatile] = ACTIONS(472), + [anon_sym_sealed] = ACTIONS(472), + [anon_sym_non_DASHsealed] = ACTIONS(470), + [anon_sym_record] = ACTIONS(472), + [anon_sym_ATinterface] = ACTIONS(470), + [anon_sym_interface] = ACTIONS(472), + [anon_sym_byte] = ACTIONS(472), + [anon_sym_short] = ACTIONS(472), + [anon_sym_int] = ACTIONS(472), + [anon_sym_long] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_float] = ACTIONS(472), + [anon_sym_double] = ACTIONS(472), + [sym_boolean_type] = ACTIONS(472), + [sym_void_type] = ACTIONS(472), + [sym_this] = ACTIONS(472), + [sym_super] = ACTIONS(472), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(122)] = { + [sym_catch_clause] = STATE(123), + [sym_finally_clause] = STATE(256), + [aux_sym_try_statement_repeat1] = STATE(123), + [ts_builtin_sym_end] = ACTIONS(474), + [sym_identifier] = ACTIONS(476), + [sym_decimal_integer_literal] = ACTIONS(476), + [sym_hex_integer_literal] = ACTIONS(476), + [sym_octal_integer_literal] = ACTIONS(476), + [sym_binary_integer_literal] = ACTIONS(474), + [sym_decimal_floating_point_literal] = ACTIONS(474), + [sym_hex_floating_point_literal] = ACTIONS(476), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_character_literal] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(476), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [sym_null_literal] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), + [anon_sym_new] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_switch] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_case] = ACTIONS(476), + [anon_sym_default] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_assert] = ACTIONS(476), + [anon_sym_do] = ACTIONS(476), + [anon_sym_while] = ACTIONS(476), + [anon_sym_break] = ACTIONS(476), + [anon_sym_continue] = ACTIONS(476), + [anon_sym_return] = ACTIONS(476), + [anon_sym_yield] = ACTIONS(476), + [anon_sym_synchronized] = ACTIONS(476), + [anon_sym_throw] = ACTIONS(476), + [anon_sym_try] = ACTIONS(476), + [anon_sym_catch] = ACTIONS(466), + [anon_sym_finally] = ACTIONS(468), + [anon_sym_if] = ACTIONS(476), + [anon_sym_else] = ACTIONS(476), + [anon_sym_for] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_open] = ACTIONS(476), + [anon_sym_module] = ACTIONS(476), + [anon_sym_static] = ACTIONS(476), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_enum] = ACTIONS(476), + [anon_sym_public] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_strictfp] = ACTIONS(476), + [anon_sym_native] = ACTIONS(476), + [anon_sym_transient] = ACTIONS(476), + [anon_sym_volatile] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_non_DASHsealed] = ACTIONS(474), + [anon_sym_record] = ACTIONS(476), + [anon_sym_ATinterface] = ACTIONS(474), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_byte] = ACTIONS(476), + [anon_sym_short] = ACTIONS(476), + [anon_sym_int] = ACTIONS(476), + [anon_sym_long] = ACTIONS(476), + [anon_sym_char] = ACTIONS(476), + [anon_sym_float] = ACTIONS(476), + [anon_sym_double] = ACTIONS(476), + [sym_boolean_type] = ACTIONS(476), + [sym_void_type] = ACTIONS(476), + [sym_this] = ACTIONS(476), + [sym_super] = ACTIONS(476), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(123)] = { + [sym_catch_clause] = STATE(123), + [aux_sym_try_statement_repeat1] = STATE(123), + [ts_builtin_sym_end] = ACTIONS(478), + [sym_identifier] = ACTIONS(480), + [sym_decimal_integer_literal] = ACTIONS(480), + [sym_hex_integer_literal] = ACTIONS(480), + [sym_octal_integer_literal] = ACTIONS(480), + [sym_binary_integer_literal] = ACTIONS(478), + [sym_decimal_floating_point_literal] = ACTIONS(478), + [sym_hex_floating_point_literal] = ACTIONS(480), + [sym_true] = ACTIONS(480), + [sym_false] = ACTIONS(480), + [sym_character_literal] = ACTIONS(478), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [sym_null_literal] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_final] = ACTIONS(480), + [anon_sym_BANG] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_PLUS_PLUS] = ACTIONS(478), + [anon_sym_DASH_DASH] = ACTIONS(478), + [anon_sym_new] = ACTIONS(480), + [anon_sym_class] = ACTIONS(480), + [anon_sym_switch] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_case] = ACTIONS(480), + [anon_sym_default] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_assert] = ACTIONS(480), + [anon_sym_do] = ACTIONS(480), + [anon_sym_while] = ACTIONS(480), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_return] = ACTIONS(480), + [anon_sym_yield] = ACTIONS(480), + [anon_sym_synchronized] = ACTIONS(480), + [anon_sym_throw] = ACTIONS(480), + [anon_sym_try] = ACTIONS(480), + [anon_sym_catch] = ACTIONS(482), + [anon_sym_finally] = ACTIONS(480), + [anon_sym_if] = ACTIONS(480), + [anon_sym_else] = ACTIONS(480), + [anon_sym_for] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_open] = ACTIONS(480), + [anon_sym_module] = ACTIONS(480), + [anon_sym_static] = ACTIONS(480), + [anon_sym_package] = ACTIONS(480), + [anon_sym_import] = ACTIONS(480), + [anon_sym_enum] = ACTIONS(480), + [anon_sym_public] = ACTIONS(480), + [anon_sym_protected] = ACTIONS(480), + [anon_sym_private] = ACTIONS(480), + [anon_sym_abstract] = ACTIONS(480), + [anon_sym_strictfp] = ACTIONS(480), + [anon_sym_native] = ACTIONS(480), + [anon_sym_transient] = ACTIONS(480), + [anon_sym_volatile] = ACTIONS(480), + [anon_sym_sealed] = ACTIONS(480), + [anon_sym_non_DASHsealed] = ACTIONS(478), + [anon_sym_record] = ACTIONS(480), + [anon_sym_ATinterface] = ACTIONS(478), + [anon_sym_interface] = ACTIONS(480), + [anon_sym_byte] = ACTIONS(480), + [anon_sym_short] = ACTIONS(480), + [anon_sym_int] = ACTIONS(480), + [anon_sym_long] = ACTIONS(480), + [anon_sym_char] = ACTIONS(480), + [anon_sym_float] = ACTIONS(480), + [anon_sym_double] = ACTIONS(480), + [sym_boolean_type] = ACTIONS(480), + [sym_void_type] = ACTIONS(480), + [sym_this] = ACTIONS(480), + [sym_super] = ACTIONS(480), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(124)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(786), + [sym_marker_annotation] = STATE(786), + [sym_annotation] = STATE(786), + [sym_element_value_pair] = STATE(1076), + [sym__element_value] = STATE(1290), + [sym_element_value_array_initializer] = STATE(1290), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(485), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25409,94 +26560,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(487), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), - [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(650), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(836), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(770), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(184), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(418), + [STATE(125)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(680), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym_block] = STATE(1117), + [sym_expression_statement] = STATE(1117), + [sym_throw_statement] = STATE(1117), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25512,92 +26644,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), - [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(664), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(833), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(771), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym_local_variable_declaration] = STATE(188), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(418), + [STATE(126)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(786), + [sym_marker_annotation] = STATE(786), + [sym_annotation] = STATE(786), + [sym_element_value_pair] = STATE(1057), + [sym__element_value] = STATE(1274), + [sym_element_value_array_initializer] = STATE(1274), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(485), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25611,287 +26724,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(493), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_final] = ACTIONS(462), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_default] = ACTIONS(462), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), - [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_identifier] = ACTIONS(478), - [sym_decimal_integer_literal] = ACTIONS(478), - [sym_hex_integer_literal] = ACTIONS(478), - [sym_octal_integer_literal] = ACTIONS(478), - [sym_binary_integer_literal] = ACTIONS(480), - [sym_decimal_floating_point_literal] = ACTIONS(480), - [sym_hex_floating_point_literal] = ACTIONS(478), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_character_literal] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [sym_null_literal] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_EQ_EQ] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(484), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_GT_GT_GT] = ACTIONS(484), - [anon_sym_instanceof] = ACTIONS(482), - [anon_sym_final] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(489), - [anon_sym_new] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_case] = ACTIONS(478), - [anon_sym_default] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(489), - [anon_sym_assert] = ACTIONS(478), - [anon_sym_do] = ACTIONS(478), - [anon_sym_while] = ACTIONS(478), - [anon_sym_break] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(478), - [anon_sym_return] = ACTIONS(478), - [anon_sym_yield] = ACTIONS(478), - [anon_sym_synchronized] = ACTIONS(478), - [anon_sym_throw] = ACTIONS(478), - [anon_sym_try] = ACTIONS(478), - [anon_sym_if] = ACTIONS(478), - [anon_sym_else] = ACTIONS(478), - [anon_sym_for] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_open] = ACTIONS(478), - [anon_sym_module] = ACTIONS(478), - [anon_sym_static] = ACTIONS(478), - [anon_sym_with] = ACTIONS(478), - [anon_sym_package] = ACTIONS(478), - [anon_sym_import] = ACTIONS(478), - [anon_sym_enum] = ACTIONS(478), - [anon_sym_public] = ACTIONS(478), - [anon_sym_protected] = ACTIONS(478), - [anon_sym_private] = ACTIONS(478), - [anon_sym_abstract] = ACTIONS(478), - [anon_sym_strictfp] = ACTIONS(478), - [anon_sym_native] = ACTIONS(478), - [anon_sym_transient] = ACTIONS(478), - [anon_sym_volatile] = ACTIONS(478), - [anon_sym_sealed] = ACTIONS(478), - [anon_sym_non_DASHsealed] = ACTIONS(480), - [anon_sym_record] = ACTIONS(478), - [anon_sym_ATinterface] = ACTIONS(480), - [anon_sym_interface] = ACTIONS(478), - [anon_sym_byte] = ACTIONS(478), - [anon_sym_short] = ACTIONS(478), - [anon_sym_int] = ACTIONS(478), - [anon_sym_long] = ACTIONS(478), - [anon_sym_char] = ACTIONS(478), - [anon_sym_float] = ACTIONS(478), - [anon_sym_double] = ACTIONS(478), - [sym_boolean_type] = ACTIONS(478), - [sym_void_type] = ACTIONS(478), - [sym_this] = ACTIONS(478), - [sym_super] = ACTIONS(478), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(480), - [sym_identifier] = ACTIONS(478), - [sym_decimal_integer_literal] = ACTIONS(478), - [sym_hex_integer_literal] = ACTIONS(478), - [sym_octal_integer_literal] = ACTIONS(478), - [sym_binary_integer_literal] = ACTIONS(480), - [sym_decimal_floating_point_literal] = ACTIONS(480), - [sym_hex_floating_point_literal] = ACTIONS(478), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_character_literal] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(480), - [sym_null_literal] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_EQ_EQ] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(484), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_GT_GT_GT] = ACTIONS(484), - [anon_sym_instanceof] = ACTIONS(482), - [anon_sym_final] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_PLUS_PLUS] = ACTIONS(489), - [anon_sym_DASH_DASH] = ACTIONS(489), - [anon_sym_new] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_default] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(489), - [anon_sym_assert] = ACTIONS(478), - [anon_sym_do] = ACTIONS(478), - [anon_sym_while] = ACTIONS(478), - [anon_sym_break] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(478), - [anon_sym_return] = ACTIONS(478), - [anon_sym_yield] = ACTIONS(478), - [anon_sym_synchronized] = ACTIONS(478), - [anon_sym_throw] = ACTIONS(478), - [anon_sym_try] = ACTIONS(478), - [anon_sym_if] = ACTIONS(478), - [anon_sym_else] = ACTIONS(478), - [anon_sym_for] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_open] = ACTIONS(478), - [anon_sym_module] = ACTIONS(478), - [anon_sym_static] = ACTIONS(478), - [anon_sym_with] = ACTIONS(478), - [anon_sym_package] = ACTIONS(478), - [anon_sym_import] = ACTIONS(478), - [anon_sym_enum] = ACTIONS(478), - [anon_sym_public] = ACTIONS(478), - [anon_sym_protected] = ACTIONS(478), - [anon_sym_private] = ACTIONS(478), - [anon_sym_abstract] = ACTIONS(478), - [anon_sym_strictfp] = ACTIONS(478), - [anon_sym_native] = ACTIONS(478), - [anon_sym_transient] = ACTIONS(478), - [anon_sym_volatile] = ACTIONS(478), - [anon_sym_sealed] = ACTIONS(478), - [anon_sym_non_DASHsealed] = ACTIONS(480), - [anon_sym_record] = ACTIONS(478), - [anon_sym_ATinterface] = ACTIONS(480), - [anon_sym_interface] = ACTIONS(478), - [anon_sym_byte] = ACTIONS(478), - [anon_sym_short] = ACTIONS(478), - [anon_sym_int] = ACTIONS(478), - [anon_sym_long] = ACTIONS(478), - [anon_sym_char] = ACTIONS(478), - [anon_sym_float] = ACTIONS(478), - [anon_sym_double] = ACTIONS(478), - [sym_boolean_type] = ACTIONS(478), - [sym_void_type] = ACTIONS(478), - [sym_this] = ACTIONS(478), - [sym_super] = ACTIONS(478), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [123] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym_element_value_pair] = STATE(1114), - [sym__element_value] = STATE(1315), - [sym_element_value_array_initializer] = STATE(1315), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(492), + [STATE(127)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(786), + [sym_marker_annotation] = STATE(786), + [sym_annotation] = STATE(786), + [sym__element_value] = STATE(1092), + [sym_element_value_array_initializer] = STATE(1092), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25903,84 +26803,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(495), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COMMA] = ACTIONS(497), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(737), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_block] = STATE(1092), - [sym_expression_statement] = STATE(1092), - [sym_throw_statement] = STATE(1092), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(128)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(786), + [sym_marker_annotation] = STATE(786), + [sym_annotation] = STATE(786), + [sym_element_value_pair] = STATE(1069), + [sym__element_value] = STATE(1330), + [sym_element_value_array_initializer] = STATE(1330), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(485), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -25994,6 +26888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(499), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -26002,74 +26897,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_throw] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym_element_value_pair] = STATE(1101), - [sym__element_value] = STATE(1343), - [sym_element_value_array_initializer] = STATE(1343), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(492), + [STATE(129)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(634), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym_record_pattern] = STATE(1124), + [sym_record_pattern_component] = STATE(1124), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(837), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(866), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(501), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26083,7 +26969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(498), + [anon_sym_RPAREN] = ACTIONS(503), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -26092,73 +26978,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [sym_underscore_pattern] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym_element_value_pair] = STATE(1138), - [sym__element_value] = STATE(1300), - [sym_element_value_array_initializer] = STATE(1300), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(492), + [STATE(130)] = { + [ts_builtin_sym_end] = ACTIONS(507), + [sym_identifier] = ACTIONS(509), + [sym_decimal_integer_literal] = ACTIONS(509), + [sym_hex_integer_literal] = ACTIONS(509), + [sym_octal_integer_literal] = ACTIONS(509), + [sym_binary_integer_literal] = ACTIONS(507), + [sym_decimal_floating_point_literal] = ACTIONS(507), + [sym_hex_floating_point_literal] = ACTIONS(509), + [sym_true] = ACTIONS(509), + [sym_false] = ACTIONS(509), + [sym_character_literal] = ACTIONS(507), + [anon_sym_DQUOTE] = ACTIONS(509), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(507), + [anon_sym_RBRACE] = ACTIONS(507), + [sym_null_literal] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(509), + [anon_sym_DASH] = ACTIONS(509), + [anon_sym_final] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_PLUS_PLUS] = ACTIONS(507), + [anon_sym_DASH_DASH] = ACTIONS(507), + [anon_sym_new] = ACTIONS(509), + [anon_sym_class] = ACTIONS(509), + [anon_sym_switch] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(507), + [anon_sym_case] = ACTIONS(509), + [anon_sym_default] = ACTIONS(509), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_assert] = ACTIONS(509), + [anon_sym_do] = ACTIONS(509), + [anon_sym_while] = ACTIONS(509), + [anon_sym_break] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_return] = ACTIONS(509), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_synchronized] = ACTIONS(509), + [anon_sym_throw] = ACTIONS(509), + [anon_sym_try] = ACTIONS(509), + [anon_sym_catch] = ACTIONS(509), + [anon_sym_finally] = ACTIONS(509), + [anon_sym_if] = ACTIONS(509), + [anon_sym_else] = ACTIONS(509), + [anon_sym_for] = ACTIONS(509), + [anon_sym_AT] = ACTIONS(509), + [anon_sym_open] = ACTIONS(509), + [anon_sym_module] = ACTIONS(509), + [anon_sym_static] = ACTIONS(509), + [anon_sym_package] = ACTIONS(509), + [anon_sym_import] = ACTIONS(509), + [anon_sym_enum] = ACTIONS(509), + [anon_sym_public] = ACTIONS(509), + [anon_sym_protected] = ACTIONS(509), + [anon_sym_private] = ACTIONS(509), + [anon_sym_abstract] = ACTIONS(509), + [anon_sym_strictfp] = ACTIONS(509), + [anon_sym_native] = ACTIONS(509), + [anon_sym_transient] = ACTIONS(509), + [anon_sym_volatile] = ACTIONS(509), + [anon_sym_sealed] = ACTIONS(509), + [anon_sym_non_DASHsealed] = ACTIONS(507), + [anon_sym_record] = ACTIONS(509), + [anon_sym_ATinterface] = ACTIONS(507), + [anon_sym_interface] = ACTIONS(509), + [anon_sym_byte] = ACTIONS(509), + [anon_sym_short] = ACTIONS(509), + [anon_sym_int] = ACTIONS(509), + [anon_sym_long] = ACTIONS(509), + [anon_sym_char] = ACTIONS(509), + [anon_sym_float] = ACTIONS(509), + [anon_sym_double] = ACTIONS(509), + [sym_boolean_type] = ACTIONS(509), + [sym_void_type] = ACTIONS(509), + [sym_this] = ACTIONS(509), + [sym_super] = ACTIONS(509), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(131)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(786), + [sym_marker_annotation] = STATE(786), + [sym_annotation] = STATE(786), + [sym__element_value] = STATE(1243), + [sym_element_value_array_initializer] = STATE(1243), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26170,9 +27129,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(511), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(500), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -26181,72 +27140,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1089), - [sym_element_value_array_initializer] = STATE(1089), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(132)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(637), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym_array_initializer] = STATE(1051), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26258,84 +27209,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(513), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(504), + [anon_sym_COMMA] = ACTIONS(515), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1209), - [sym_element_value_array_initializer] = STATE(1209), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(133)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(786), + [sym_marker_annotation] = STATE(786), + [sym_annotation] = STATE(786), + [sym__element_value] = STATE(1243), + [sym_element_value_array_initializer] = STATE(1243), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26347,7 +27291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(519), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -26358,71 +27302,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(662), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym_array_initializer] = STATE(1107), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(134)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(634), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym_record_pattern] = STATE(1124), + [sym_record_pattern_component] = STATE(1124), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(837), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(866), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(501), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26434,84 +27372,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(508), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(521), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(510), [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(25), [anon_sym_PLUS_PLUS] = ACTIONS(27), [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [sym_underscore_pattern] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(658), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_record_pattern] = STATE(1154), - [sym_record_pattern_component] = STATE(1154), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(814), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(858), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(445), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(514), + [STATE(135)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(673), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym_array_initializer] = STATE(1148), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26523,9 +27452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(523), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(516), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -26534,72 +27463,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [sym_underscore_pattern] = ACTIONS(518), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(658), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_record_pattern] = STATE(1154), - [sym_record_pattern_component] = STATE(1154), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(814), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(858), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(445), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(514), + [STATE(136)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(786), + [sym_marker_annotation] = STATE(786), + [sym_annotation] = STATE(786), + [sym__element_value] = STATE(1224), + [sym_element_value_array_initializer] = STATE(1224), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26613,7 +27535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(520), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -26622,72 +27543,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [sym_underscore_pattern] = ACTIONS(518), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1209), - [sym_element_value_array_initializer] = STATE(1209), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(137)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(673), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym_array_initializer] = STATE(1148), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26699,7 +27612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(525), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -26710,71 +27623,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(705), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym_array_initializer] = STATE(1296), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(138)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(786), + [sym_marker_annotation] = STATE(786), + [sym_annotation] = STATE(786), + [sym__element_value] = STATE(1243), + [sym_element_value_array_initializer] = STATE(1243), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26786,7 +27693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(524), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -26797,73 +27703,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(626), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_pattern] = STATE(1030), - [sym_type_pattern] = STATE(1132), - [sym_record_pattern] = STATE(1132), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(819), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(858), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(438), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(526), + [STATE(139)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(620), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(786), + [sym_marker_annotation] = STATE(786), + [sym_annotation] = STATE(786), + [sym__element_value] = STATE(1276), + [sym_element_value_array_initializer] = STATE(1276), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26876,79 +27774,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(705), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym_array_initializer] = STATE(1296), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(140)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(606), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym_pattern] = STATE(1058), + [sym_type_pattern] = STATE(1071), + [sym_record_pattern] = STATE(1071), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(844), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(866), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(527), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -26960,7 +27854,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(11), [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(536), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(21), @@ -26971,159 +27864,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_identifier] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(422), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_instanceof] = ACTIONS(420), - [anon_sym_final] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(422), - [anon_sym_COMMA] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_COLON] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(422), - [anon_sym_DASH_DASH] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_RBRACK] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_class] = ACTIONS(420), - [anon_sym_COLON_COLON] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_default] = ACTIONS(420), - [anon_sym_when] = ACTIONS(420), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_synchronized] = ACTIONS(420), - [anon_sym_AT] = ACTIONS(420), - [anon_sym_open] = ACTIONS(420), - [anon_sym_module] = ACTIONS(420), - [anon_sym_static] = ACTIONS(420), - [anon_sym_to] = ACTIONS(420), - [anon_sym_with] = ACTIONS(420), - [anon_sym_package] = ACTIONS(420), - [anon_sym_enum] = ACTIONS(420), - [anon_sym_public] = ACTIONS(420), - [anon_sym_protected] = ACTIONS(420), - [anon_sym_private] = ACTIONS(420), - [anon_sym_abstract] = ACTIONS(420), - [anon_sym_strictfp] = ACTIONS(420), - [anon_sym_native] = ACTIONS(420), - [anon_sym_transient] = ACTIONS(420), - [anon_sym_volatile] = ACTIONS(420), - [anon_sym_sealed] = ACTIONS(420), - [anon_sym_non_DASHsealed] = ACTIONS(422), - [anon_sym_record] = ACTIONS(420), - [anon_sym_ATinterface] = ACTIONS(422), - [anon_sym_interface] = ACTIONS(420), - [anon_sym_byte] = ACTIONS(420), - [anon_sym_short] = ACTIONS(420), - [anon_sym_int] = ACTIONS(420), - [anon_sym_long] = ACTIONS(420), - [anon_sym_char] = ACTIONS(420), - [anon_sym_float] = ACTIONS(420), - [anon_sym_double] = ACTIONS(420), - [sym_boolean_type] = ACTIONS(420), - [sym_void_type] = ACTIONS(420), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [137] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1209), - [sym_element_value_array_initializer] = STATE(1209), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(141)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(596), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym_pattern] = STATE(986), + [sym_type_pattern] = STATE(1071), + [sym_record_pattern] = STATE(1071), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(844), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(866), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(529), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -27136,81 +27935,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(13), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1330), - [sym_element_value_array_initializer] = STATE(1330), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(142)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(667), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(786), + [sym_marker_annotation] = STATE(786), + [sym_annotation] = STATE(786), + [sym__element_value] = STATE(1224), + [sym_element_value_array_initializer] = STATE(1224), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -27232,2800 +28023,2592 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(489), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(691), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1235), - [sym_element_value_array_initializer] = STATE(1235), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(143)] = { + [ts_builtin_sym_end] = ACTIONS(539), + [sym_identifier] = ACTIONS(541), + [sym_decimal_integer_literal] = ACTIONS(541), + [sym_hex_integer_literal] = ACTIONS(541), + [sym_octal_integer_literal] = ACTIONS(541), + [sym_binary_integer_literal] = ACTIONS(539), + [sym_decimal_floating_point_literal] = ACTIONS(539), + [sym_hex_floating_point_literal] = ACTIONS(541), + [sym_true] = ACTIONS(541), + [sym_false] = ACTIONS(541), + [sym_character_literal] = ACTIONS(539), + [anon_sym_DQUOTE] = ACTIONS(541), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(539), + [anon_sym_RBRACE] = ACTIONS(539), + [sym_null_literal] = ACTIONS(541), + [anon_sym_LPAREN] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(541), + [anon_sym_DASH] = ACTIONS(541), + [anon_sym_final] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_TILDE] = ACTIONS(539), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [anon_sym_new] = ACTIONS(541), + [anon_sym_class] = ACTIONS(541), + [anon_sym_switch] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(539), + [anon_sym_case] = ACTIONS(541), + [anon_sym_default] = ACTIONS(541), + [anon_sym_SEMI] = ACTIONS(539), + [anon_sym_assert] = ACTIONS(541), + [anon_sym_do] = ACTIONS(541), + [anon_sym_while] = ACTIONS(541), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(541), + [anon_sym_return] = ACTIONS(541), + [anon_sym_yield] = ACTIONS(541), + [anon_sym_synchronized] = ACTIONS(541), + [anon_sym_throw] = ACTIONS(541), + [anon_sym_try] = ACTIONS(541), + [anon_sym_if] = ACTIONS(541), + [anon_sym_else] = ACTIONS(541), + [anon_sym_for] = ACTIONS(541), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_open] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_static] = ACTIONS(541), + [anon_sym_package] = ACTIONS(541), + [anon_sym_import] = ACTIONS(541), + [anon_sym_enum] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_abstract] = ACTIONS(541), + [anon_sym_strictfp] = ACTIONS(541), + [anon_sym_native] = ACTIONS(541), + [anon_sym_transient] = ACTIONS(541), + [anon_sym_volatile] = ACTIONS(541), + [anon_sym_sealed] = ACTIONS(541), + [anon_sym_non_DASHsealed] = ACTIONS(539), + [anon_sym_record] = ACTIONS(541), + [anon_sym_ATinterface] = ACTIONS(539), + [anon_sym_interface] = ACTIONS(541), + [anon_sym_byte] = ACTIONS(541), + [anon_sym_short] = ACTIONS(541), + [anon_sym_int] = ACTIONS(541), + [anon_sym_long] = ACTIONS(541), + [anon_sym_char] = ACTIONS(541), + [anon_sym_float] = ACTIONS(541), + [anon_sym_double] = ACTIONS(541), + [sym_boolean_type] = ACTIONS(541), + [sym_void_type] = ACTIONS(541), + [sym_this] = ACTIONS(541), + [sym_super] = ACTIONS(541), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(645), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(845), - [sym_marker_annotation] = STATE(845), - [sym_annotation] = STATE(845), - [sym__element_value] = STATE(1235), - [sym_element_value_array_initializer] = STATE(1235), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(144)] = { + [ts_builtin_sym_end] = ACTIONS(543), + [sym_identifier] = ACTIONS(545), + [sym_decimal_integer_literal] = ACTIONS(545), + [sym_hex_integer_literal] = ACTIONS(545), + [sym_octal_integer_literal] = ACTIONS(545), + [sym_binary_integer_literal] = ACTIONS(543), + [sym_decimal_floating_point_literal] = ACTIONS(543), + [sym_hex_floating_point_literal] = ACTIONS(545), + [sym_true] = ACTIONS(545), + [sym_false] = ACTIONS(545), + [sym_character_literal] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(545), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(543), + [sym_null_literal] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_final] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(543), + [anon_sym_TILDE] = ACTIONS(543), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH_DASH] = ACTIONS(543), + [anon_sym_new] = ACTIONS(545), + [anon_sym_class] = ACTIONS(545), + [anon_sym_switch] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(543), + [anon_sym_case] = ACTIONS(545), + [anon_sym_default] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym_assert] = ACTIONS(545), + [anon_sym_do] = ACTIONS(545), + [anon_sym_while] = ACTIONS(545), + [anon_sym_break] = ACTIONS(545), + [anon_sym_continue] = ACTIONS(545), + [anon_sym_return] = ACTIONS(545), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_synchronized] = ACTIONS(545), + [anon_sym_throw] = ACTIONS(545), + [anon_sym_try] = ACTIONS(545), + [anon_sym_if] = ACTIONS(545), + [anon_sym_else] = ACTIONS(545), + [anon_sym_for] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(545), + [anon_sym_open] = ACTIONS(545), + [anon_sym_module] = ACTIONS(545), + [anon_sym_static] = ACTIONS(545), + [anon_sym_package] = ACTIONS(545), + [anon_sym_import] = ACTIONS(545), + [anon_sym_enum] = ACTIONS(545), + [anon_sym_public] = ACTIONS(545), + [anon_sym_protected] = ACTIONS(545), + [anon_sym_private] = ACTIONS(545), + [anon_sym_abstract] = ACTIONS(545), + [anon_sym_strictfp] = ACTIONS(545), + [anon_sym_native] = ACTIONS(545), + [anon_sym_transient] = ACTIONS(545), + [anon_sym_volatile] = ACTIONS(545), + [anon_sym_sealed] = ACTIONS(545), + [anon_sym_non_DASHsealed] = ACTIONS(543), + [anon_sym_record] = ACTIONS(545), + [anon_sym_ATinterface] = ACTIONS(543), + [anon_sym_interface] = ACTIONS(545), + [anon_sym_byte] = ACTIONS(545), + [anon_sym_short] = ACTIONS(545), + [anon_sym_int] = ACTIONS(545), + [anon_sym_long] = ACTIONS(545), + [anon_sym_char] = ACTIONS(545), + [anon_sym_float] = ACTIONS(545), + [anon_sym_double] = ACTIONS(545), + [sym_boolean_type] = ACTIONS(545), + [sym_void_type] = ACTIONS(545), + [sym_this] = ACTIONS(545), + [sym_super] = ACTIONS(545), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(630), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_pattern] = STATE(1102), - [sym_type_pattern] = STATE(1132), - [sym_record_pattern] = STATE(1132), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(819), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(858), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(440), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(538), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(145)] = { + [ts_builtin_sym_end] = ACTIONS(547), + [sym_identifier] = ACTIONS(549), + [sym_decimal_integer_literal] = ACTIONS(549), + [sym_hex_integer_literal] = ACTIONS(549), + [sym_octal_integer_literal] = ACTIONS(549), + [sym_binary_integer_literal] = ACTIONS(547), + [sym_decimal_floating_point_literal] = ACTIONS(547), + [sym_hex_floating_point_literal] = ACTIONS(549), + [sym_true] = ACTIONS(549), + [sym_false] = ACTIONS(549), + [sym_character_literal] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(547), + [anon_sym_RBRACE] = ACTIONS(547), + [sym_null_literal] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_final] = ACTIONS(549), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(547), + [anon_sym_DASH_DASH] = ACTIONS(547), + [anon_sym_new] = ACTIONS(549), + [anon_sym_class] = ACTIONS(549), + [anon_sym_switch] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_case] = ACTIONS(549), + [anon_sym_default] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_assert] = ACTIONS(549), + [anon_sym_do] = ACTIONS(549), + [anon_sym_while] = ACTIONS(549), + [anon_sym_break] = ACTIONS(549), + [anon_sym_continue] = ACTIONS(549), + [anon_sym_return] = ACTIONS(549), + [anon_sym_yield] = ACTIONS(549), + [anon_sym_synchronized] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(549), + [anon_sym_try] = ACTIONS(549), + [anon_sym_if] = ACTIONS(549), + [anon_sym_else] = ACTIONS(549), + [anon_sym_for] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(549), + [anon_sym_open] = ACTIONS(549), + [anon_sym_module] = ACTIONS(549), + [anon_sym_static] = ACTIONS(549), + [anon_sym_package] = ACTIONS(549), + [anon_sym_import] = ACTIONS(549), + [anon_sym_enum] = ACTIONS(549), + [anon_sym_public] = ACTIONS(549), + [anon_sym_protected] = ACTIONS(549), + [anon_sym_private] = ACTIONS(549), + [anon_sym_abstract] = ACTIONS(549), + [anon_sym_strictfp] = ACTIONS(549), + [anon_sym_native] = ACTIONS(549), + [anon_sym_transient] = ACTIONS(549), + [anon_sym_volatile] = ACTIONS(549), + [anon_sym_sealed] = ACTIONS(549), + [anon_sym_non_DASHsealed] = ACTIONS(547), + [anon_sym_record] = ACTIONS(549), + [anon_sym_ATinterface] = ACTIONS(547), + [anon_sym_interface] = ACTIONS(549), + [anon_sym_byte] = ACTIONS(549), + [anon_sym_short] = ACTIONS(549), + [anon_sym_int] = ACTIONS(549), + [anon_sym_long] = ACTIONS(549), + [anon_sym_char] = ACTIONS(549), + [anon_sym_float] = ACTIONS(549), + [anon_sym_double] = ACTIONS(549), + [sym_boolean_type] = ACTIONS(549), + [sym_void_type] = ACTIONS(549), + [sym_this] = ACTIONS(549), + [sym_super] = ACTIONS(549), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(653), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym_array_initializer] = STATE(1134), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(146)] = { + [ts_builtin_sym_end] = ACTIONS(551), + [sym_identifier] = ACTIONS(553), + [sym_decimal_integer_literal] = ACTIONS(553), + [sym_hex_integer_literal] = ACTIONS(553), + [sym_octal_integer_literal] = ACTIONS(553), + [sym_binary_integer_literal] = ACTIONS(551), + [sym_decimal_floating_point_literal] = ACTIONS(551), + [sym_hex_floating_point_literal] = ACTIONS(553), + [sym_true] = ACTIONS(553), + [sym_false] = ACTIONS(553), + [sym_character_literal] = ACTIONS(551), + [anon_sym_DQUOTE] = ACTIONS(553), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(551), + [anon_sym_RBRACE] = ACTIONS(551), + [sym_null_literal] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(551), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_final] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_TILDE] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(551), + [anon_sym_new] = ACTIONS(553), + [anon_sym_class] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_case] = ACTIONS(553), + [anon_sym_default] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(551), + [anon_sym_assert] = ACTIONS(553), + [anon_sym_do] = ACTIONS(553), + [anon_sym_while] = ACTIONS(553), + [anon_sym_break] = ACTIONS(553), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(553), + [anon_sym_yield] = ACTIONS(553), + [anon_sym_synchronized] = ACTIONS(553), + [anon_sym_throw] = ACTIONS(553), + [anon_sym_try] = ACTIONS(553), + [anon_sym_if] = ACTIONS(553), + [anon_sym_else] = ACTIONS(553), + [anon_sym_for] = ACTIONS(553), + [anon_sym_AT] = ACTIONS(553), + [anon_sym_open] = ACTIONS(553), + [anon_sym_module] = ACTIONS(553), + [anon_sym_static] = ACTIONS(553), + [anon_sym_package] = ACTIONS(553), + [anon_sym_import] = ACTIONS(553), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_public] = ACTIONS(553), + [anon_sym_protected] = ACTIONS(553), + [anon_sym_private] = ACTIONS(553), + [anon_sym_abstract] = ACTIONS(553), + [anon_sym_strictfp] = ACTIONS(553), + [anon_sym_native] = ACTIONS(553), + [anon_sym_transient] = ACTIONS(553), + [anon_sym_volatile] = ACTIONS(553), + [anon_sym_sealed] = ACTIONS(553), + [anon_sym_non_DASHsealed] = ACTIONS(551), + [anon_sym_record] = ACTIONS(553), + [anon_sym_ATinterface] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(553), + [anon_sym_byte] = ACTIONS(553), + [anon_sym_short] = ACTIONS(553), + [anon_sym_int] = ACTIONS(553), + [anon_sym_long] = ACTIONS(553), + [anon_sym_char] = ACTIONS(553), + [anon_sym_float] = ACTIONS(553), + [anon_sym_double] = ACTIONS(553), + [sym_boolean_type] = ACTIONS(553), + [sym_void_type] = ACTIONS(553), + [sym_this] = ACTIONS(553), + [sym_super] = ACTIONS(553), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(635), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_block] = STATE(609), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(147)] = { + [ts_builtin_sym_end] = ACTIONS(555), + [sym_identifier] = ACTIONS(557), + [sym_decimal_integer_literal] = ACTIONS(557), + [sym_hex_integer_literal] = ACTIONS(557), + [sym_octal_integer_literal] = ACTIONS(557), + [sym_binary_integer_literal] = ACTIONS(555), + [sym_decimal_floating_point_literal] = ACTIONS(555), + [sym_hex_floating_point_literal] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [sym_false] = ACTIONS(557), + [sym_character_literal] = ACTIONS(555), + [anon_sym_DQUOTE] = ACTIONS(557), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(555), + [sym_null_literal] = ACTIONS(557), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_final] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(555), + [anon_sym_new] = ACTIONS(557), + [anon_sym_class] = ACTIONS(557), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_case] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym_assert] = ACTIONS(557), + [anon_sym_do] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_synchronized] = ACTIONS(557), + [anon_sym_throw] = ACTIONS(557), + [anon_sym_try] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_else] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(557), + [anon_sym_open] = ACTIONS(557), + [anon_sym_module] = ACTIONS(557), + [anon_sym_static] = ACTIONS(557), + [anon_sym_package] = ACTIONS(557), + [anon_sym_import] = ACTIONS(557), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_public] = ACTIONS(557), + [anon_sym_protected] = ACTIONS(557), + [anon_sym_private] = ACTIONS(557), + [anon_sym_abstract] = ACTIONS(557), + [anon_sym_strictfp] = ACTIONS(557), + [anon_sym_native] = ACTIONS(557), + [anon_sym_transient] = ACTIONS(557), + [anon_sym_volatile] = ACTIONS(557), + [anon_sym_sealed] = ACTIONS(557), + [anon_sym_non_DASHsealed] = ACTIONS(555), + [anon_sym_record] = ACTIONS(557), + [anon_sym_ATinterface] = ACTIONS(555), + [anon_sym_interface] = ACTIONS(557), + [anon_sym_byte] = ACTIONS(557), + [anon_sym_short] = ACTIONS(557), + [anon_sym_int] = ACTIONS(557), + [anon_sym_long] = ACTIONS(557), + [anon_sym_char] = ACTIONS(557), + [anon_sym_float] = ACTIONS(557), + [anon_sym_double] = ACTIONS(557), + [sym_boolean_type] = ACTIONS(557), + [sym_void_type] = ACTIONS(557), + [sym_this] = ACTIONS(557), + [sym_super] = ACTIONS(557), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(618), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym_block] = STATE(609), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(148)] = { + [ts_builtin_sym_end] = ACTIONS(559), + [sym_identifier] = ACTIONS(561), + [sym_decimal_integer_literal] = ACTIONS(561), + [sym_hex_integer_literal] = ACTIONS(561), + [sym_octal_integer_literal] = ACTIONS(561), + [sym_binary_integer_literal] = ACTIONS(559), + [sym_decimal_floating_point_literal] = ACTIONS(559), + [sym_hex_floating_point_literal] = ACTIONS(561), + [sym_true] = ACTIONS(561), + [sym_false] = ACTIONS(561), + [sym_character_literal] = ACTIONS(559), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(559), + [sym_null_literal] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(559), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_final] = ACTIONS(561), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_new] = ACTIONS(561), + [anon_sym_class] = ACTIONS(561), + [anon_sym_switch] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_case] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_assert] = ACTIONS(561), + [anon_sym_do] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(561), + [anon_sym_synchronized] = ACTIONS(561), + [anon_sym_throw] = ACTIONS(561), + [anon_sym_try] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_else] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_open] = ACTIONS(561), + [anon_sym_module] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_package] = ACTIONS(561), + [anon_sym_import] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_public] = ACTIONS(561), + [anon_sym_protected] = ACTIONS(561), + [anon_sym_private] = ACTIONS(561), + [anon_sym_abstract] = ACTIONS(561), + [anon_sym_strictfp] = ACTIONS(561), + [anon_sym_native] = ACTIONS(561), + [anon_sym_transient] = ACTIONS(561), + [anon_sym_volatile] = ACTIONS(561), + [anon_sym_sealed] = ACTIONS(561), + [anon_sym_non_DASHsealed] = ACTIONS(559), + [anon_sym_record] = ACTIONS(561), + [anon_sym_ATinterface] = ACTIONS(559), + [anon_sym_interface] = ACTIONS(561), + [anon_sym_byte] = ACTIONS(561), + [anon_sym_short] = ACTIONS(561), + [anon_sym_int] = ACTIONS(561), + [anon_sym_long] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_float] = ACTIONS(561), + [anon_sym_double] = ACTIONS(561), + [sym_boolean_type] = ACTIONS(561), + [sym_void_type] = ACTIONS(561), + [sym_this] = ACTIONS(561), + [sym_super] = ACTIONS(561), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(705), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym_array_initializer] = STATE(1296), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(149)] = { + [ts_builtin_sym_end] = ACTIONS(563), + [sym_identifier] = ACTIONS(565), + [sym_decimal_integer_literal] = ACTIONS(565), + [sym_hex_integer_literal] = ACTIONS(565), + [sym_octal_integer_literal] = ACTIONS(565), + [sym_binary_integer_literal] = ACTIONS(563), + [sym_decimal_floating_point_literal] = ACTIONS(563), + [sym_hex_floating_point_literal] = ACTIONS(565), + [sym_true] = ACTIONS(565), + [sym_false] = ACTIONS(565), + [sym_character_literal] = ACTIONS(563), + [anon_sym_DQUOTE] = ACTIONS(565), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(563), + [sym_null_literal] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_final] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(565), + [anon_sym_switch] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_assert] = ACTIONS(565), + [anon_sym_do] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_yield] = ACTIONS(565), + [anon_sym_synchronized] = ACTIONS(565), + [anon_sym_throw] = ACTIONS(565), + [anon_sym_try] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_else] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_open] = ACTIONS(565), + [anon_sym_module] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_package] = ACTIONS(565), + [anon_sym_import] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_public] = ACTIONS(565), + [anon_sym_protected] = ACTIONS(565), + [anon_sym_private] = ACTIONS(565), + [anon_sym_abstract] = ACTIONS(565), + [anon_sym_strictfp] = ACTIONS(565), + [anon_sym_native] = ACTIONS(565), + [anon_sym_transient] = ACTIONS(565), + [anon_sym_volatile] = ACTIONS(565), + [anon_sym_sealed] = ACTIONS(565), + [anon_sym_non_DASHsealed] = ACTIONS(563), + [anon_sym_record] = ACTIONS(565), + [anon_sym_ATinterface] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(565), + [anon_sym_byte] = ACTIONS(565), + [anon_sym_short] = ACTIONS(565), + [anon_sym_int] = ACTIONS(565), + [anon_sym_long] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_float] = ACTIONS(565), + [anon_sym_double] = ACTIONS(565), + [sym_boolean_type] = ACTIONS(565), + [sym_void_type] = ACTIONS(565), + [sym_this] = ACTIONS(565), + [sym_super] = ACTIONS(565), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(682), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(150)] = { + [ts_builtin_sym_end] = ACTIONS(462), + [sym_identifier] = ACTIONS(464), + [sym_decimal_integer_literal] = ACTIONS(464), + [sym_hex_integer_literal] = ACTIONS(464), + [sym_octal_integer_literal] = ACTIONS(464), + [sym_binary_integer_literal] = ACTIONS(462), + [sym_decimal_floating_point_literal] = ACTIONS(462), + [sym_hex_floating_point_literal] = ACTIONS(464), + [sym_true] = ACTIONS(464), + [sym_false] = ACTIONS(464), + [sym_character_literal] = ACTIONS(462), + [anon_sym_DQUOTE] = ACTIONS(464), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [sym_null_literal] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LT] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_final] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(462), + [anon_sym_TILDE] = ACTIONS(462), + [anon_sym_PLUS_PLUS] = ACTIONS(462), + [anon_sym_DASH_DASH] = ACTIONS(462), + [anon_sym_new] = ACTIONS(464), + [anon_sym_class] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_case] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_assert] = ACTIONS(464), + [anon_sym_do] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [anon_sym_break] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_synchronized] = ACTIONS(464), + [anon_sym_throw] = ACTIONS(464), + [anon_sym_try] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_else] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(464), + [anon_sym_open] = ACTIONS(464), + [anon_sym_module] = ACTIONS(464), + [anon_sym_static] = ACTIONS(464), + [anon_sym_package] = ACTIONS(464), + [anon_sym_import] = ACTIONS(464), + [anon_sym_enum] = ACTIONS(464), + [anon_sym_public] = ACTIONS(464), + [anon_sym_protected] = ACTIONS(464), + [anon_sym_private] = ACTIONS(464), + [anon_sym_abstract] = ACTIONS(464), + [anon_sym_strictfp] = ACTIONS(464), + [anon_sym_native] = ACTIONS(464), + [anon_sym_transient] = ACTIONS(464), + [anon_sym_volatile] = ACTIONS(464), + [anon_sym_sealed] = ACTIONS(464), + [anon_sym_non_DASHsealed] = ACTIONS(462), + [anon_sym_record] = ACTIONS(464), + [anon_sym_ATinterface] = ACTIONS(462), + [anon_sym_interface] = ACTIONS(464), + [anon_sym_byte] = ACTIONS(464), + [anon_sym_short] = ACTIONS(464), + [anon_sym_int] = ACTIONS(464), + [anon_sym_long] = ACTIONS(464), + [anon_sym_char] = ACTIONS(464), + [anon_sym_float] = ACTIONS(464), + [anon_sym_double] = ACTIONS(464), + [sym_boolean_type] = ACTIONS(464), + [sym_void_type] = ACTIONS(464), + [sym_this] = ACTIONS(464), + [sym_super] = ACTIONS(464), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(669), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(151)] = { + [ts_builtin_sym_end] = ACTIONS(567), + [sym_identifier] = ACTIONS(569), + [sym_decimal_integer_literal] = ACTIONS(569), + [sym_hex_integer_literal] = ACTIONS(569), + [sym_octal_integer_literal] = ACTIONS(569), + [sym_binary_integer_literal] = ACTIONS(567), + [sym_decimal_floating_point_literal] = ACTIONS(567), + [sym_hex_floating_point_literal] = ACTIONS(569), + [sym_true] = ACTIONS(569), + [sym_false] = ACTIONS(569), + [sym_character_literal] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [sym_null_literal] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_final] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(567), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_new] = ACTIONS(569), + [anon_sym_class] = ACTIONS(569), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_case] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_assert] = ACTIONS(569), + [anon_sym_do] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_synchronized] = ACTIONS(569), + [anon_sym_throw] = ACTIONS(569), + [anon_sym_try] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_else] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(569), + [anon_sym_open] = ACTIONS(569), + [anon_sym_module] = ACTIONS(569), + [anon_sym_static] = ACTIONS(569), + [anon_sym_package] = ACTIONS(569), + [anon_sym_import] = ACTIONS(569), + [anon_sym_enum] = ACTIONS(569), + [anon_sym_public] = ACTIONS(569), + [anon_sym_protected] = ACTIONS(569), + [anon_sym_private] = ACTIONS(569), + [anon_sym_abstract] = ACTIONS(569), + [anon_sym_strictfp] = ACTIONS(569), + [anon_sym_native] = ACTIONS(569), + [anon_sym_transient] = ACTIONS(569), + [anon_sym_volatile] = ACTIONS(569), + [anon_sym_sealed] = ACTIONS(569), + [anon_sym_non_DASHsealed] = ACTIONS(567), + [anon_sym_record] = ACTIONS(569), + [anon_sym_ATinterface] = ACTIONS(567), + [anon_sym_interface] = ACTIONS(569), + [anon_sym_byte] = ACTIONS(569), + [anon_sym_short] = ACTIONS(569), + [anon_sym_int] = ACTIONS(569), + [anon_sym_long] = ACTIONS(569), + [anon_sym_char] = ACTIONS(569), + [anon_sym_float] = ACTIONS(569), + [anon_sym_double] = ACTIONS(569), + [sym_boolean_type] = ACTIONS(569), + [sym_void_type] = ACTIONS(569), + [sym_this] = ACTIONS(569), + [sym_super] = ACTIONS(569), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(670), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(152)] = { + [ts_builtin_sym_end] = ACTIONS(571), + [sym_identifier] = ACTIONS(573), + [sym_decimal_integer_literal] = ACTIONS(573), + [sym_hex_integer_literal] = ACTIONS(573), + [sym_octal_integer_literal] = ACTIONS(573), + [sym_binary_integer_literal] = ACTIONS(571), + [sym_decimal_floating_point_literal] = ACTIONS(571), + [sym_hex_floating_point_literal] = ACTIONS(573), + [sym_true] = ACTIONS(573), + [sym_false] = ACTIONS(573), + [sym_character_literal] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(573), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(571), + [sym_null_literal] = ACTIONS(573), + [anon_sym_LPAREN] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_final] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(571), + [anon_sym_new] = ACTIONS(573), + [anon_sym_class] = ACTIONS(573), + [anon_sym_switch] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_case] = ACTIONS(573), + [anon_sym_default] = ACTIONS(573), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_assert] = ACTIONS(573), + [anon_sym_do] = ACTIONS(573), + [anon_sym_while] = ACTIONS(573), + [anon_sym_break] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(573), + [anon_sym_synchronized] = ACTIONS(573), + [anon_sym_throw] = ACTIONS(573), + [anon_sym_try] = ACTIONS(573), + [anon_sym_if] = ACTIONS(573), + [anon_sym_else] = ACTIONS(573), + [anon_sym_for] = ACTIONS(573), + [anon_sym_AT] = ACTIONS(573), + [anon_sym_open] = ACTIONS(573), + [anon_sym_module] = ACTIONS(573), + [anon_sym_static] = ACTIONS(573), + [anon_sym_package] = ACTIONS(573), + [anon_sym_import] = ACTIONS(573), + [anon_sym_enum] = ACTIONS(573), + [anon_sym_public] = ACTIONS(573), + [anon_sym_protected] = ACTIONS(573), + [anon_sym_private] = ACTIONS(573), + [anon_sym_abstract] = ACTIONS(573), + [anon_sym_strictfp] = ACTIONS(573), + [anon_sym_native] = ACTIONS(573), + [anon_sym_transient] = ACTIONS(573), + [anon_sym_volatile] = ACTIONS(573), + [anon_sym_sealed] = ACTIONS(573), + [anon_sym_non_DASHsealed] = ACTIONS(571), + [anon_sym_record] = ACTIONS(573), + [anon_sym_ATinterface] = ACTIONS(571), + [anon_sym_interface] = ACTIONS(573), + [anon_sym_byte] = ACTIONS(573), + [anon_sym_short] = ACTIONS(573), + [anon_sym_int] = ACTIONS(573), + [anon_sym_long] = ACTIONS(573), + [anon_sym_char] = ACTIONS(573), + [anon_sym_float] = ACTIONS(573), + [anon_sym_double] = ACTIONS(573), + [sym_boolean_type] = ACTIONS(573), + [sym_void_type] = ACTIONS(573), + [sym_this] = ACTIONS(573), + [sym_super] = ACTIONS(573), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(727), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(153)] = { + [ts_builtin_sym_end] = ACTIONS(575), + [sym_identifier] = ACTIONS(577), + [sym_decimal_integer_literal] = ACTIONS(577), + [sym_hex_integer_literal] = ACTIONS(577), + [sym_octal_integer_literal] = ACTIONS(577), + [sym_binary_integer_literal] = ACTIONS(575), + [sym_decimal_floating_point_literal] = ACTIONS(575), + [sym_hex_floating_point_literal] = ACTIONS(577), + [sym_true] = ACTIONS(577), + [sym_false] = ACTIONS(577), + [sym_character_literal] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(577), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(575), + [sym_null_literal] = ACTIONS(577), + [anon_sym_LPAREN] = ACTIONS(575), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_final] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [anon_sym_new] = ACTIONS(577), + [anon_sym_class] = ACTIONS(577), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_case] = ACTIONS(577), + [anon_sym_default] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(575), + [anon_sym_assert] = ACTIONS(577), + [anon_sym_do] = ACTIONS(577), + [anon_sym_while] = ACTIONS(577), + [anon_sym_break] = ACTIONS(577), + [anon_sym_continue] = ACTIONS(577), + [anon_sym_return] = ACTIONS(577), + [anon_sym_yield] = ACTIONS(577), + [anon_sym_synchronized] = ACTIONS(577), + [anon_sym_throw] = ACTIONS(577), + [anon_sym_try] = ACTIONS(577), + [anon_sym_if] = ACTIONS(577), + [anon_sym_else] = ACTIONS(577), + [anon_sym_for] = ACTIONS(577), + [anon_sym_AT] = ACTIONS(577), + [anon_sym_open] = ACTIONS(577), + [anon_sym_module] = ACTIONS(577), + [anon_sym_static] = ACTIONS(577), + [anon_sym_package] = ACTIONS(577), + [anon_sym_import] = ACTIONS(577), + [anon_sym_enum] = ACTIONS(577), + [anon_sym_public] = ACTIONS(577), + [anon_sym_protected] = ACTIONS(577), + [anon_sym_private] = ACTIONS(577), + [anon_sym_abstract] = ACTIONS(577), + [anon_sym_strictfp] = ACTIONS(577), + [anon_sym_native] = ACTIONS(577), + [anon_sym_transient] = ACTIONS(577), + [anon_sym_volatile] = ACTIONS(577), + [anon_sym_sealed] = ACTIONS(577), + [anon_sym_non_DASHsealed] = ACTIONS(575), + [anon_sym_record] = ACTIONS(577), + [anon_sym_ATinterface] = ACTIONS(575), + [anon_sym_interface] = ACTIONS(577), + [anon_sym_byte] = ACTIONS(577), + [anon_sym_short] = ACTIONS(577), + [anon_sym_int] = ACTIONS(577), + [anon_sym_long] = ACTIONS(577), + [anon_sym_char] = ACTIONS(577), + [anon_sym_float] = ACTIONS(577), + [anon_sym_double] = ACTIONS(577), + [sym_boolean_type] = ACTIONS(577), + [sym_void_type] = ACTIONS(577), + [sym_this] = ACTIONS(577), + [sym_super] = ACTIONS(577), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(671), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(154)] = { + [ts_builtin_sym_end] = ACTIONS(579), + [sym_identifier] = ACTIONS(581), + [sym_decimal_integer_literal] = ACTIONS(581), + [sym_hex_integer_literal] = ACTIONS(581), + [sym_octal_integer_literal] = ACTIONS(581), + [sym_binary_integer_literal] = ACTIONS(579), + [sym_decimal_floating_point_literal] = ACTIONS(579), + [sym_hex_floating_point_literal] = ACTIONS(581), + [sym_true] = ACTIONS(581), + [sym_false] = ACTIONS(581), + [sym_character_literal] = ACTIONS(579), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(579), + [sym_null_literal] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_final] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(579), + [anon_sym_PLUS_PLUS] = ACTIONS(579), + [anon_sym_DASH_DASH] = ACTIONS(579), + [anon_sym_new] = ACTIONS(581), + [anon_sym_class] = ACTIONS(581), + [anon_sym_switch] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_case] = ACTIONS(581), + [anon_sym_default] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_do] = ACTIONS(581), + [anon_sym_while] = ACTIONS(581), + [anon_sym_break] = ACTIONS(581), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_return] = ACTIONS(581), + [anon_sym_yield] = ACTIONS(581), + [anon_sym_synchronized] = ACTIONS(581), + [anon_sym_throw] = ACTIONS(581), + [anon_sym_try] = ACTIONS(581), + [anon_sym_if] = ACTIONS(581), + [anon_sym_else] = ACTIONS(581), + [anon_sym_for] = ACTIONS(581), + [anon_sym_AT] = ACTIONS(581), + [anon_sym_open] = ACTIONS(581), + [anon_sym_module] = ACTIONS(581), + [anon_sym_static] = ACTIONS(581), + [anon_sym_package] = ACTIONS(581), + [anon_sym_import] = ACTIONS(581), + [anon_sym_enum] = ACTIONS(581), + [anon_sym_public] = ACTIONS(581), + [anon_sym_protected] = ACTIONS(581), + [anon_sym_private] = ACTIONS(581), + [anon_sym_abstract] = ACTIONS(581), + [anon_sym_strictfp] = ACTIONS(581), + [anon_sym_native] = ACTIONS(581), + [anon_sym_transient] = ACTIONS(581), + [anon_sym_volatile] = ACTIONS(581), + [anon_sym_sealed] = ACTIONS(581), + [anon_sym_non_DASHsealed] = ACTIONS(579), + [anon_sym_record] = ACTIONS(581), + [anon_sym_ATinterface] = ACTIONS(579), + [anon_sym_interface] = ACTIONS(581), + [anon_sym_byte] = ACTIONS(581), + [anon_sym_short] = ACTIONS(581), + [anon_sym_int] = ACTIONS(581), + [anon_sym_long] = ACTIONS(581), + [anon_sym_char] = ACTIONS(581), + [anon_sym_float] = ACTIONS(581), + [anon_sym_double] = ACTIONS(581), + [sym_boolean_type] = ACTIONS(581), + [sym_void_type] = ACTIONS(581), + [sym_this] = ACTIONS(581), + [sym_super] = ACTIONS(581), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(658), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(155)] = { + [ts_builtin_sym_end] = ACTIONS(583), + [sym_identifier] = ACTIONS(585), + [sym_decimal_integer_literal] = ACTIONS(585), + [sym_hex_integer_literal] = ACTIONS(585), + [sym_octal_integer_literal] = ACTIONS(585), + [sym_binary_integer_literal] = ACTIONS(583), + [sym_decimal_floating_point_literal] = ACTIONS(583), + [sym_hex_floating_point_literal] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_character_literal] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(585), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(583), + [sym_null_literal] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_final] = ACTIONS(585), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_TILDE] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_new] = ACTIONS(585), + [anon_sym_class] = ACTIONS(585), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym_case] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(583), + [anon_sym_assert] = ACTIONS(585), + [anon_sym_do] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(585), + [anon_sym_synchronized] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(585), + [anon_sym_try] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_else] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(585), + [anon_sym_open] = ACTIONS(585), + [anon_sym_module] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_package] = ACTIONS(585), + [anon_sym_import] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_public] = ACTIONS(585), + [anon_sym_protected] = ACTIONS(585), + [anon_sym_private] = ACTIONS(585), + [anon_sym_abstract] = ACTIONS(585), + [anon_sym_strictfp] = ACTIONS(585), + [anon_sym_native] = ACTIONS(585), + [anon_sym_transient] = ACTIONS(585), + [anon_sym_volatile] = ACTIONS(585), + [anon_sym_sealed] = ACTIONS(585), + [anon_sym_non_DASHsealed] = ACTIONS(583), + [anon_sym_record] = ACTIONS(585), + [anon_sym_ATinterface] = ACTIONS(583), + [anon_sym_interface] = ACTIONS(585), + [anon_sym_byte] = ACTIONS(585), + [anon_sym_short] = ACTIONS(585), + [anon_sym_int] = ACTIONS(585), + [anon_sym_long] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_float] = ACTIONS(585), + [anon_sym_double] = ACTIONS(585), + [sym_boolean_type] = ACTIONS(585), + [sym_void_type] = ACTIONS(585), + [sym_this] = ACTIONS(585), + [sym_super] = ACTIONS(585), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(655), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(156)] = { + [ts_builtin_sym_end] = ACTIONS(587), + [sym_identifier] = ACTIONS(589), + [sym_decimal_integer_literal] = ACTIONS(589), + [sym_hex_integer_literal] = ACTIONS(589), + [sym_octal_integer_literal] = ACTIONS(589), + [sym_binary_integer_literal] = ACTIONS(587), + [sym_decimal_floating_point_literal] = ACTIONS(587), + [sym_hex_floating_point_literal] = ACTIONS(589), + [sym_true] = ACTIONS(589), + [sym_false] = ACTIONS(589), + [sym_character_literal] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(587), + [sym_null_literal] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(589), + [anon_sym_DASH] = ACTIONS(589), + [anon_sym_final] = ACTIONS(589), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_TILDE] = ACTIONS(587), + [anon_sym_PLUS_PLUS] = ACTIONS(587), + [anon_sym_DASH_DASH] = ACTIONS(587), + [anon_sym_new] = ACTIONS(589), + [anon_sym_class] = ACTIONS(589), + [anon_sym_switch] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(587), + [anon_sym_case] = ACTIONS(589), + [anon_sym_default] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_assert] = ACTIONS(589), + [anon_sym_do] = ACTIONS(589), + [anon_sym_while] = ACTIONS(589), + [anon_sym_break] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(589), + [anon_sym_return] = ACTIONS(589), + [anon_sym_yield] = ACTIONS(589), + [anon_sym_synchronized] = ACTIONS(589), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_try] = ACTIONS(589), + [anon_sym_if] = ACTIONS(589), + [anon_sym_else] = ACTIONS(589), + [anon_sym_for] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(589), + [anon_sym_open] = ACTIONS(589), + [anon_sym_module] = ACTIONS(589), + [anon_sym_static] = ACTIONS(589), + [anon_sym_package] = ACTIONS(589), + [anon_sym_import] = ACTIONS(589), + [anon_sym_enum] = ACTIONS(589), + [anon_sym_public] = ACTIONS(589), + [anon_sym_protected] = ACTIONS(589), + [anon_sym_private] = ACTIONS(589), + [anon_sym_abstract] = ACTIONS(589), + [anon_sym_strictfp] = ACTIONS(589), + [anon_sym_native] = ACTIONS(589), + [anon_sym_transient] = ACTIONS(589), + [anon_sym_volatile] = ACTIONS(589), + [anon_sym_sealed] = ACTIONS(589), + [anon_sym_non_DASHsealed] = ACTIONS(587), + [anon_sym_record] = ACTIONS(589), + [anon_sym_ATinterface] = ACTIONS(587), + [anon_sym_interface] = ACTIONS(589), + [anon_sym_byte] = ACTIONS(589), + [anon_sym_short] = ACTIONS(589), + [anon_sym_int] = ACTIONS(589), + [anon_sym_long] = ACTIONS(589), + [anon_sym_char] = ACTIONS(589), + [anon_sym_float] = ACTIONS(589), + [anon_sym_double] = ACTIONS(589), + [sym_boolean_type] = ACTIONS(589), + [sym_void_type] = ACTIONS(589), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(589), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(657), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(157)] = { + [ts_builtin_sym_end] = ACTIONS(591), + [sym_identifier] = ACTIONS(593), + [sym_decimal_integer_literal] = ACTIONS(593), + [sym_hex_integer_literal] = ACTIONS(593), + [sym_octal_integer_literal] = ACTIONS(593), + [sym_binary_integer_literal] = ACTIONS(591), + [sym_decimal_floating_point_literal] = ACTIONS(591), + [sym_hex_floating_point_literal] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [sym_character_literal] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(593), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(591), + [anon_sym_RBRACE] = ACTIONS(591), + [sym_null_literal] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_final] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_TILDE] = ACTIONS(591), + [anon_sym_PLUS_PLUS] = ACTIONS(591), + [anon_sym_DASH_DASH] = ACTIONS(591), + [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(593), + [anon_sym_switch] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(591), + [anon_sym_case] = ACTIONS(593), + [anon_sym_default] = ACTIONS(593), + [anon_sym_SEMI] = ACTIONS(591), + [anon_sym_assert] = ACTIONS(593), + [anon_sym_do] = ACTIONS(593), + [anon_sym_while] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_return] = ACTIONS(593), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_synchronized] = ACTIONS(593), + [anon_sym_throw] = ACTIONS(593), + [anon_sym_try] = ACTIONS(593), + [anon_sym_if] = ACTIONS(593), + [anon_sym_else] = ACTIONS(593), + [anon_sym_for] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(593), + [anon_sym_open] = ACTIONS(593), + [anon_sym_module] = ACTIONS(593), + [anon_sym_static] = ACTIONS(593), + [anon_sym_package] = ACTIONS(593), + [anon_sym_import] = ACTIONS(593), + [anon_sym_enum] = ACTIONS(593), + [anon_sym_public] = ACTIONS(593), + [anon_sym_protected] = ACTIONS(593), + [anon_sym_private] = ACTIONS(593), + [anon_sym_abstract] = ACTIONS(593), + [anon_sym_strictfp] = ACTIONS(593), + [anon_sym_native] = ACTIONS(593), + [anon_sym_transient] = ACTIONS(593), + [anon_sym_volatile] = ACTIONS(593), + [anon_sym_sealed] = ACTIONS(593), + [anon_sym_non_DASHsealed] = ACTIONS(591), + [anon_sym_record] = ACTIONS(593), + [anon_sym_ATinterface] = ACTIONS(591), + [anon_sym_interface] = ACTIONS(593), + [anon_sym_byte] = ACTIONS(593), + [anon_sym_short] = ACTIONS(593), + [anon_sym_int] = ACTIONS(593), + [anon_sym_long] = ACTIONS(593), + [anon_sym_char] = ACTIONS(593), + [anon_sym_float] = ACTIONS(593), + [anon_sym_double] = ACTIONS(593), + [sym_boolean_type] = ACTIONS(593), + [sym_void_type] = ACTIONS(593), + [sym_this] = ACTIONS(593), + [sym_super] = ACTIONS(593), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(660), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(158)] = { + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [sym_decimal_integer_literal] = ACTIONS(597), + [sym_hex_integer_literal] = ACTIONS(597), + [sym_octal_integer_literal] = ACTIONS(597), + [sym_binary_integer_literal] = ACTIONS(595), + [sym_decimal_floating_point_literal] = ACTIONS(595), + [sym_hex_floating_point_literal] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_character_literal] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(597), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [sym_null_literal] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_final] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_class] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_case] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_assert] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_synchronized] = ACTIONS(597), + [anon_sym_throw] = ACTIONS(597), + [anon_sym_try] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_else] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(597), + [anon_sym_open] = ACTIONS(597), + [anon_sym_module] = ACTIONS(597), + [anon_sym_static] = ACTIONS(597), + [anon_sym_package] = ACTIONS(597), + [anon_sym_import] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_public] = ACTIONS(597), + [anon_sym_protected] = ACTIONS(597), + [anon_sym_private] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_strictfp] = ACTIONS(597), + [anon_sym_native] = ACTIONS(597), + [anon_sym_transient] = ACTIONS(597), + [anon_sym_volatile] = ACTIONS(597), + [anon_sym_sealed] = ACTIONS(597), + [anon_sym_non_DASHsealed] = ACTIONS(595), + [anon_sym_record] = ACTIONS(597), + [anon_sym_ATinterface] = ACTIONS(595), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_byte] = ACTIONS(597), + [anon_sym_short] = ACTIONS(597), + [anon_sym_int] = ACTIONS(597), + [anon_sym_long] = ACTIONS(597), + [anon_sym_char] = ACTIONS(597), + [anon_sym_float] = ACTIONS(597), + [anon_sym_double] = ACTIONS(597), + [sym_boolean_type] = ACTIONS(597), + [sym_void_type] = ACTIONS(597), + [sym_this] = ACTIONS(597), + [sym_super] = ACTIONS(597), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(722), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(159)] = { + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(601), + [sym_decimal_integer_literal] = ACTIONS(601), + [sym_hex_integer_literal] = ACTIONS(601), + [sym_octal_integer_literal] = ACTIONS(601), + [sym_binary_integer_literal] = ACTIONS(599), + [sym_decimal_floating_point_literal] = ACTIONS(599), + [sym_hex_floating_point_literal] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_character_literal] = ACTIONS(599), + [anon_sym_DQUOTE] = ACTIONS(601), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [sym_null_literal] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_final] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_new] = ACTIONS(601), + [anon_sym_class] = ACTIONS(601), + [anon_sym_switch] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_case] = ACTIONS(601), + [anon_sym_default] = ACTIONS(601), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_assert] = ACTIONS(601), + [anon_sym_do] = ACTIONS(601), + [anon_sym_while] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_yield] = ACTIONS(601), + [anon_sym_synchronized] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(601), + [anon_sym_try] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_else] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(601), + [anon_sym_open] = ACTIONS(601), + [anon_sym_module] = ACTIONS(601), + [anon_sym_static] = ACTIONS(601), + [anon_sym_package] = ACTIONS(601), + [anon_sym_import] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_public] = ACTIONS(601), + [anon_sym_protected] = ACTIONS(601), + [anon_sym_private] = ACTIONS(601), + [anon_sym_abstract] = ACTIONS(601), + [anon_sym_strictfp] = ACTIONS(601), + [anon_sym_native] = ACTIONS(601), + [anon_sym_transient] = ACTIONS(601), + [anon_sym_volatile] = ACTIONS(601), + [anon_sym_sealed] = ACTIONS(601), + [anon_sym_non_DASHsealed] = ACTIONS(599), + [anon_sym_record] = ACTIONS(601), + [anon_sym_ATinterface] = ACTIONS(599), + [anon_sym_interface] = ACTIONS(601), + [anon_sym_byte] = ACTIONS(601), + [anon_sym_short] = ACTIONS(601), + [anon_sym_int] = ACTIONS(601), + [anon_sym_long] = ACTIONS(601), + [anon_sym_char] = ACTIONS(601), + [anon_sym_float] = ACTIONS(601), + [anon_sym_double] = ACTIONS(601), + [sym_boolean_type] = ACTIONS(601), + [sym_void_type] = ACTIONS(601), + [sym_this] = ACTIONS(601), + [sym_super] = ACTIONS(601), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(722), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(562), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(160)] = { + [ts_builtin_sym_end] = ACTIONS(603), + [sym_identifier] = ACTIONS(605), + [sym_decimal_integer_literal] = ACTIONS(605), + [sym_hex_integer_literal] = ACTIONS(605), + [sym_octal_integer_literal] = ACTIONS(605), + [sym_binary_integer_literal] = ACTIONS(603), + [sym_decimal_floating_point_literal] = ACTIONS(603), + [sym_hex_floating_point_literal] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_character_literal] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(603), + [sym_null_literal] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_final] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_new] = ACTIONS(605), + [anon_sym_class] = ACTIONS(605), + [anon_sym_switch] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_case] = ACTIONS(605), + [anon_sym_default] = ACTIONS(605), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_assert] = ACTIONS(605), + [anon_sym_do] = ACTIONS(605), + [anon_sym_while] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_yield] = ACTIONS(605), + [anon_sym_synchronized] = ACTIONS(605), + [anon_sym_throw] = ACTIONS(605), + [anon_sym_try] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_else] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(605), + [anon_sym_open] = ACTIONS(605), + [anon_sym_module] = ACTIONS(605), + [anon_sym_static] = ACTIONS(605), + [anon_sym_package] = ACTIONS(605), + [anon_sym_import] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [anon_sym_public] = ACTIONS(605), + [anon_sym_protected] = ACTIONS(605), + [anon_sym_private] = ACTIONS(605), + [anon_sym_abstract] = ACTIONS(605), + [anon_sym_strictfp] = ACTIONS(605), + [anon_sym_native] = ACTIONS(605), + [anon_sym_transient] = ACTIONS(605), + [anon_sym_volatile] = ACTIONS(605), + [anon_sym_sealed] = ACTIONS(605), + [anon_sym_non_DASHsealed] = ACTIONS(603), + [anon_sym_record] = ACTIONS(605), + [anon_sym_ATinterface] = ACTIONS(603), + [anon_sym_interface] = ACTIONS(605), + [anon_sym_byte] = ACTIONS(605), + [anon_sym_short] = ACTIONS(605), + [anon_sym_int] = ACTIONS(605), + [anon_sym_long] = ACTIONS(605), + [anon_sym_char] = ACTIONS(605), + [anon_sym_float] = ACTIONS(605), + [anon_sym_double] = ACTIONS(605), + [sym_boolean_type] = ACTIONS(605), + [sym_void_type] = ACTIONS(605), + [sym_this] = ACTIONS(605), + [sym_super] = ACTIONS(605), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(714), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(161)] = { + [ts_builtin_sym_end] = ACTIONS(607), + [sym_identifier] = ACTIONS(609), + [sym_decimal_integer_literal] = ACTIONS(609), + [sym_hex_integer_literal] = ACTIONS(609), + [sym_octal_integer_literal] = ACTIONS(609), + [sym_binary_integer_literal] = ACTIONS(607), + [sym_decimal_floating_point_literal] = ACTIONS(607), + [sym_hex_floating_point_literal] = ACTIONS(609), + [sym_true] = ACTIONS(609), + [sym_false] = ACTIONS(609), + [sym_character_literal] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [sym_null_literal] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_final] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(607), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_new] = ACTIONS(609), + [anon_sym_class] = ACTIONS(609), + [anon_sym_switch] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_case] = ACTIONS(609), + [anon_sym_default] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_assert] = ACTIONS(609), + [anon_sym_do] = ACTIONS(609), + [anon_sym_while] = ACTIONS(609), + [anon_sym_break] = ACTIONS(609), + [anon_sym_continue] = ACTIONS(609), + [anon_sym_return] = ACTIONS(609), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_synchronized] = ACTIONS(609), + [anon_sym_throw] = ACTIONS(609), + [anon_sym_try] = ACTIONS(609), + [anon_sym_if] = ACTIONS(609), + [anon_sym_else] = ACTIONS(609), + [anon_sym_for] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym_open] = ACTIONS(609), + [anon_sym_module] = ACTIONS(609), + [anon_sym_static] = ACTIONS(609), + [anon_sym_package] = ACTIONS(609), + [anon_sym_import] = ACTIONS(609), + [anon_sym_enum] = ACTIONS(609), + [anon_sym_public] = ACTIONS(609), + [anon_sym_protected] = ACTIONS(609), + [anon_sym_private] = ACTIONS(609), + [anon_sym_abstract] = ACTIONS(609), + [anon_sym_strictfp] = ACTIONS(609), + [anon_sym_native] = ACTIONS(609), + [anon_sym_transient] = ACTIONS(609), + [anon_sym_volatile] = ACTIONS(609), + [anon_sym_sealed] = ACTIONS(609), + [anon_sym_non_DASHsealed] = ACTIONS(607), + [anon_sym_record] = ACTIONS(609), + [anon_sym_ATinterface] = ACTIONS(607), + [anon_sym_interface] = ACTIONS(609), + [anon_sym_byte] = ACTIONS(609), + [anon_sym_short] = ACTIONS(609), + [anon_sym_int] = ACTIONS(609), + [anon_sym_long] = ACTIONS(609), + [anon_sym_char] = ACTIONS(609), + [anon_sym_float] = ACTIONS(609), + [anon_sym_double] = ACTIONS(609), + [sym_boolean_type] = ACTIONS(609), + [sym_void_type] = ACTIONS(609), + [sym_this] = ACTIONS(609), + [sym_super] = ACTIONS(609), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_catch_clause] = STATE(214), - [sym_finally_clause] = STATE(356), - [aux_sym_try_statement_repeat1] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_decimal_integer_literal] = ACTIONS(568), - [sym_hex_integer_literal] = ACTIONS(568), - [sym_octal_integer_literal] = ACTIONS(568), - [sym_binary_integer_literal] = ACTIONS(566), - [sym_decimal_floating_point_literal] = ACTIONS(566), - [sym_hex_floating_point_literal] = ACTIONS(568), - [sym_true] = ACTIONS(568), - [sym_false] = ACTIONS(568), - [sym_character_literal] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [sym_null_literal] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_final] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(566), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_DASH_DASH] = ACTIONS(566), - [anon_sym_new] = ACTIONS(568), - [anon_sym_class] = ACTIONS(568), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_assert] = ACTIONS(568), - [anon_sym_do] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_yield] = ACTIONS(568), - [anon_sym_synchronized] = ACTIONS(568), - [anon_sym_throw] = ACTIONS(568), - [anon_sym_try] = ACTIONS(568), - [anon_sym_catch] = ACTIONS(570), - [anon_sym_finally] = ACTIONS(572), - [anon_sym_if] = ACTIONS(568), - [anon_sym_else] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(568), - [anon_sym_open] = ACTIONS(568), - [anon_sym_module] = ACTIONS(568), - [anon_sym_static] = ACTIONS(568), - [anon_sym_with] = ACTIONS(568), - [anon_sym_package] = ACTIONS(568), - [anon_sym_import] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_public] = ACTIONS(568), - [anon_sym_protected] = ACTIONS(568), - [anon_sym_private] = ACTIONS(568), - [anon_sym_abstract] = ACTIONS(568), - [anon_sym_strictfp] = ACTIONS(568), - [anon_sym_native] = ACTIONS(568), - [anon_sym_transient] = ACTIONS(568), - [anon_sym_volatile] = ACTIONS(568), - [anon_sym_sealed] = ACTIONS(568), - [anon_sym_non_DASHsealed] = ACTIONS(566), - [anon_sym_record] = ACTIONS(568), - [anon_sym_ATinterface] = ACTIONS(566), - [anon_sym_interface] = ACTIONS(568), - [anon_sym_byte] = ACTIONS(568), - [anon_sym_short] = ACTIONS(568), - [anon_sym_int] = ACTIONS(568), - [anon_sym_long] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_float] = ACTIONS(568), - [anon_sym_double] = ACTIONS(568), - [sym_boolean_type] = ACTIONS(568), - [sym_void_type] = ACTIONS(568), - [sym_this] = ACTIONS(568), - [sym_super] = ACTIONS(568), + [STATE(162)] = { + [ts_builtin_sym_end] = ACTIONS(611), + [sym_identifier] = ACTIONS(613), + [sym_decimal_integer_literal] = ACTIONS(613), + [sym_hex_integer_literal] = ACTIONS(613), + [sym_octal_integer_literal] = ACTIONS(613), + [sym_binary_integer_literal] = ACTIONS(611), + [sym_decimal_floating_point_literal] = ACTIONS(611), + [sym_hex_floating_point_literal] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_character_literal] = ACTIONS(611), + [anon_sym_DQUOTE] = ACTIONS(613), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [sym_null_literal] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_final] = ACTIONS(613), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_new] = ACTIONS(613), + [anon_sym_class] = ACTIONS(613), + [anon_sym_switch] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_case] = ACTIONS(613), + [anon_sym_default] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_assert] = ACTIONS(613), + [anon_sym_do] = ACTIONS(613), + [anon_sym_while] = ACTIONS(613), + [anon_sym_break] = ACTIONS(613), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_return] = ACTIONS(613), + [anon_sym_yield] = ACTIONS(613), + [anon_sym_synchronized] = ACTIONS(613), + [anon_sym_throw] = ACTIONS(613), + [anon_sym_try] = ACTIONS(613), + [anon_sym_if] = ACTIONS(613), + [anon_sym_else] = ACTIONS(613), + [anon_sym_for] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(613), + [anon_sym_open] = ACTIONS(613), + [anon_sym_module] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_package] = ACTIONS(613), + [anon_sym_import] = ACTIONS(613), + [anon_sym_enum] = ACTIONS(613), + [anon_sym_public] = ACTIONS(613), + [anon_sym_protected] = ACTIONS(613), + [anon_sym_private] = ACTIONS(613), + [anon_sym_abstract] = ACTIONS(613), + [anon_sym_strictfp] = ACTIONS(613), + [anon_sym_native] = ACTIONS(613), + [anon_sym_transient] = ACTIONS(613), + [anon_sym_volatile] = ACTIONS(613), + [anon_sym_sealed] = ACTIONS(613), + [anon_sym_non_DASHsealed] = ACTIONS(611), + [anon_sym_record] = ACTIONS(613), + [anon_sym_ATinterface] = ACTIONS(611), + [anon_sym_interface] = ACTIONS(613), + [anon_sym_byte] = ACTIONS(613), + [anon_sym_short] = ACTIONS(613), + [anon_sym_int] = ACTIONS(613), + [anon_sym_long] = ACTIONS(613), + [anon_sym_char] = ACTIONS(613), + [anon_sym_float] = ACTIONS(613), + [anon_sym_double] = ACTIONS(613), + [sym_boolean_type] = ACTIONS(613), + [sym_void_type] = ACTIONS(613), + [sym_this] = ACTIONS(613), + [sym_super] = ACTIONS(613), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_catch_clause] = STATE(163), - [sym_finally_clause] = STATE(358), - [aux_sym_try_statement_repeat1] = STATE(163), - [ts_builtin_sym_end] = ACTIONS(574), - [sym_identifier] = ACTIONS(576), - [sym_decimal_integer_literal] = ACTIONS(576), - [sym_hex_integer_literal] = ACTIONS(576), - [sym_octal_integer_literal] = ACTIONS(576), - [sym_binary_integer_literal] = ACTIONS(574), - [sym_decimal_floating_point_literal] = ACTIONS(574), - [sym_hex_floating_point_literal] = ACTIONS(576), - [sym_true] = ACTIONS(576), - [sym_false] = ACTIONS(576), - [sym_character_literal] = ACTIONS(574), - [anon_sym_DQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [sym_null_literal] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_final] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(574), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_PLUS_PLUS] = ACTIONS(574), - [anon_sym_DASH_DASH] = ACTIONS(574), - [anon_sym_new] = ACTIONS(576), - [anon_sym_class] = ACTIONS(576), - [anon_sym_switch] = ACTIONS(576), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_case] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_assert] = ACTIONS(576), - [anon_sym_do] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [anon_sym_break] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_yield] = ACTIONS(576), - [anon_sym_synchronized] = ACTIONS(576), - [anon_sym_throw] = ACTIONS(576), - [anon_sym_try] = ACTIONS(576), - [anon_sym_catch] = ACTIONS(570), - [anon_sym_finally] = ACTIONS(572), - [anon_sym_if] = ACTIONS(576), - [anon_sym_else] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym_open] = ACTIONS(576), - [anon_sym_module] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_with] = ACTIONS(576), - [anon_sym_package] = ACTIONS(576), - [anon_sym_import] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_protected] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_abstract] = ACTIONS(576), - [anon_sym_strictfp] = ACTIONS(576), - [anon_sym_native] = ACTIONS(576), - [anon_sym_transient] = ACTIONS(576), - [anon_sym_volatile] = ACTIONS(576), - [anon_sym_sealed] = ACTIONS(576), - [anon_sym_non_DASHsealed] = ACTIONS(574), - [anon_sym_record] = ACTIONS(576), - [anon_sym_ATinterface] = ACTIONS(574), - [anon_sym_interface] = ACTIONS(576), - [anon_sym_byte] = ACTIONS(576), - [anon_sym_short] = ACTIONS(576), - [anon_sym_int] = ACTIONS(576), - [anon_sym_long] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_float] = ACTIONS(576), - [anon_sym_double] = ACTIONS(576), - [sym_boolean_type] = ACTIONS(576), - [sym_void_type] = ACTIONS(576), - [sym_this] = ACTIONS(576), - [sym_super] = ACTIONS(576), + [STATE(163)] = { + [ts_builtin_sym_end] = ACTIONS(615), + [sym_identifier] = ACTIONS(617), + [sym_decimal_integer_literal] = ACTIONS(617), + [sym_hex_integer_literal] = ACTIONS(617), + [sym_octal_integer_literal] = ACTIONS(617), + [sym_binary_integer_literal] = ACTIONS(615), + [sym_decimal_floating_point_literal] = ACTIONS(615), + [sym_hex_floating_point_literal] = ACTIONS(617), + [sym_true] = ACTIONS(617), + [sym_false] = ACTIONS(617), + [sym_character_literal] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [sym_null_literal] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_final] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_new] = ACTIONS(617), + [anon_sym_class] = ACTIONS(617), + [anon_sym_switch] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_case] = ACTIONS(617), + [anon_sym_default] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_assert] = ACTIONS(617), + [anon_sym_do] = ACTIONS(617), + [anon_sym_while] = ACTIONS(617), + [anon_sym_break] = ACTIONS(617), + [anon_sym_continue] = ACTIONS(617), + [anon_sym_return] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(617), + [anon_sym_synchronized] = ACTIONS(617), + [anon_sym_throw] = ACTIONS(617), + [anon_sym_try] = ACTIONS(617), + [anon_sym_if] = ACTIONS(617), + [anon_sym_else] = ACTIONS(617), + [anon_sym_for] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(617), + [anon_sym_open] = ACTIONS(617), + [anon_sym_module] = ACTIONS(617), + [anon_sym_static] = ACTIONS(617), + [anon_sym_package] = ACTIONS(617), + [anon_sym_import] = ACTIONS(617), + [anon_sym_enum] = ACTIONS(617), + [anon_sym_public] = ACTIONS(617), + [anon_sym_protected] = ACTIONS(617), + [anon_sym_private] = ACTIONS(617), + [anon_sym_abstract] = ACTIONS(617), + [anon_sym_strictfp] = ACTIONS(617), + [anon_sym_native] = ACTIONS(617), + [anon_sym_transient] = ACTIONS(617), + [anon_sym_volatile] = ACTIONS(617), + [anon_sym_sealed] = ACTIONS(617), + [anon_sym_non_DASHsealed] = ACTIONS(615), + [anon_sym_record] = ACTIONS(617), + [anon_sym_ATinterface] = ACTIONS(615), + [anon_sym_interface] = ACTIONS(617), + [anon_sym_byte] = ACTIONS(617), + [anon_sym_short] = ACTIONS(617), + [anon_sym_int] = ACTIONS(617), + [anon_sym_long] = ACTIONS(617), + [anon_sym_char] = ACTIONS(617), + [anon_sym_float] = ACTIONS(617), + [anon_sym_double] = ACTIONS(617), + [sym_boolean_type] = ACTIONS(617), + [sym_void_type] = ACTIONS(617), + [sym_this] = ACTIONS(617), + [sym_super] = ACTIONS(617), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(736), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(164)] = { + [ts_builtin_sym_end] = ACTIONS(619), + [sym_identifier] = ACTIONS(621), + [sym_decimal_integer_literal] = ACTIONS(621), + [sym_hex_integer_literal] = ACTIONS(621), + [sym_octal_integer_literal] = ACTIONS(621), + [sym_binary_integer_literal] = ACTIONS(619), + [sym_decimal_floating_point_literal] = ACTIONS(619), + [sym_hex_floating_point_literal] = ACTIONS(621), + [sym_true] = ACTIONS(621), + [sym_false] = ACTIONS(621), + [sym_character_literal] = ACTIONS(619), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [sym_null_literal] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_final] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_new] = ACTIONS(621), + [anon_sym_class] = ACTIONS(621), + [anon_sym_switch] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_case] = ACTIONS(621), + [anon_sym_default] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_assert] = ACTIONS(621), + [anon_sym_do] = ACTIONS(621), + [anon_sym_while] = ACTIONS(621), + [anon_sym_break] = ACTIONS(621), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_return] = ACTIONS(621), + [anon_sym_yield] = ACTIONS(621), + [anon_sym_synchronized] = ACTIONS(621), + [anon_sym_throw] = ACTIONS(621), + [anon_sym_try] = ACTIONS(621), + [anon_sym_if] = ACTIONS(621), + [anon_sym_else] = ACTIONS(621), + [anon_sym_for] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_open] = ACTIONS(621), + [anon_sym_module] = ACTIONS(621), + [anon_sym_static] = ACTIONS(621), + [anon_sym_package] = ACTIONS(621), + [anon_sym_import] = ACTIONS(621), + [anon_sym_enum] = ACTIONS(621), + [anon_sym_public] = ACTIONS(621), + [anon_sym_protected] = ACTIONS(621), + [anon_sym_private] = ACTIONS(621), + [anon_sym_abstract] = ACTIONS(621), + [anon_sym_strictfp] = ACTIONS(621), + [anon_sym_native] = ACTIONS(621), + [anon_sym_transient] = ACTIONS(621), + [anon_sym_volatile] = ACTIONS(621), + [anon_sym_sealed] = ACTIONS(621), + [anon_sym_non_DASHsealed] = ACTIONS(619), + [anon_sym_record] = ACTIONS(621), + [anon_sym_ATinterface] = ACTIONS(619), + [anon_sym_interface] = ACTIONS(621), + [anon_sym_byte] = ACTIONS(621), + [anon_sym_short] = ACTIONS(621), + [anon_sym_int] = ACTIONS(621), + [anon_sym_long] = ACTIONS(621), + [anon_sym_char] = ACTIONS(621), + [anon_sym_float] = ACTIONS(621), + [anon_sym_double] = ACTIONS(621), + [sym_boolean_type] = ACTIONS(621), + [sym_void_type] = ACTIONS(621), + [sym_this] = ACTIONS(621), + [sym_super] = ACTIONS(621), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(738), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(165)] = { + [ts_builtin_sym_end] = ACTIONS(623), + [sym_identifier] = ACTIONS(625), + [sym_decimal_integer_literal] = ACTIONS(625), + [sym_hex_integer_literal] = ACTIONS(625), + [sym_octal_integer_literal] = ACTIONS(625), + [sym_binary_integer_literal] = ACTIONS(623), + [sym_decimal_floating_point_literal] = ACTIONS(623), + [sym_hex_floating_point_literal] = ACTIONS(625), + [sym_true] = ACTIONS(625), + [sym_false] = ACTIONS(625), + [sym_character_literal] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [sym_null_literal] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_final] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_new] = ACTIONS(625), + [anon_sym_class] = ACTIONS(625), + [anon_sym_switch] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_case] = ACTIONS(625), + [anon_sym_default] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_assert] = ACTIONS(625), + [anon_sym_do] = ACTIONS(625), + [anon_sym_while] = ACTIONS(625), + [anon_sym_break] = ACTIONS(625), + [anon_sym_continue] = ACTIONS(625), + [anon_sym_return] = ACTIONS(625), + [anon_sym_yield] = ACTIONS(625), + [anon_sym_synchronized] = ACTIONS(625), + [anon_sym_throw] = ACTIONS(625), + [anon_sym_try] = ACTIONS(625), + [anon_sym_if] = ACTIONS(625), + [anon_sym_else] = ACTIONS(625), + [anon_sym_for] = ACTIONS(625), + [anon_sym_AT] = ACTIONS(625), + [anon_sym_open] = ACTIONS(625), + [anon_sym_module] = ACTIONS(625), + [anon_sym_static] = ACTIONS(625), + [anon_sym_package] = ACTIONS(625), + [anon_sym_import] = ACTIONS(625), + [anon_sym_enum] = ACTIONS(625), + [anon_sym_public] = ACTIONS(625), + [anon_sym_protected] = ACTIONS(625), + [anon_sym_private] = ACTIONS(625), + [anon_sym_abstract] = ACTIONS(625), + [anon_sym_strictfp] = ACTIONS(625), + [anon_sym_native] = ACTIONS(625), + [anon_sym_transient] = ACTIONS(625), + [anon_sym_volatile] = ACTIONS(625), + [anon_sym_sealed] = ACTIONS(625), + [anon_sym_non_DASHsealed] = ACTIONS(623), + [anon_sym_record] = ACTIONS(625), + [anon_sym_ATinterface] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(625), + [anon_sym_byte] = ACTIONS(625), + [anon_sym_short] = ACTIONS(625), + [anon_sym_int] = ACTIONS(625), + [anon_sym_long] = ACTIONS(625), + [anon_sym_char] = ACTIONS(625), + [anon_sym_float] = ACTIONS(625), + [anon_sym_double] = ACTIONS(625), + [sym_boolean_type] = ACTIONS(625), + [sym_void_type] = ACTIONS(625), + [sym_this] = ACTIONS(625), + [sym_super] = ACTIONS(625), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(714), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_RBRACK] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(166)] = { + [ts_builtin_sym_end] = ACTIONS(627), + [sym_identifier] = ACTIONS(629), + [sym_decimal_integer_literal] = ACTIONS(629), + [sym_hex_integer_literal] = ACTIONS(629), + [sym_octal_integer_literal] = ACTIONS(629), + [sym_binary_integer_literal] = ACTIONS(627), + [sym_decimal_floating_point_literal] = ACTIONS(627), + [sym_hex_floating_point_literal] = ACTIONS(629), + [sym_true] = ACTIONS(629), + [sym_false] = ACTIONS(629), + [sym_character_literal] = ACTIONS(627), + [anon_sym_DQUOTE] = ACTIONS(629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(627), + [sym_null_literal] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(627), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_DASH] = ACTIONS(629), + [anon_sym_final] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(627), + [anon_sym_TILDE] = ACTIONS(627), + [anon_sym_PLUS_PLUS] = ACTIONS(627), + [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_class] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_case] = ACTIONS(629), + [anon_sym_default] = ACTIONS(629), + [anon_sym_SEMI] = ACTIONS(627), + [anon_sym_assert] = ACTIONS(629), + [anon_sym_do] = ACTIONS(629), + [anon_sym_while] = ACTIONS(629), + [anon_sym_break] = ACTIONS(629), + [anon_sym_continue] = ACTIONS(629), + [anon_sym_return] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(629), + [anon_sym_synchronized] = ACTIONS(629), + [anon_sym_throw] = ACTIONS(629), + [anon_sym_try] = ACTIONS(629), + [anon_sym_if] = ACTIONS(629), + [anon_sym_else] = ACTIONS(629), + [anon_sym_for] = ACTIONS(629), + [anon_sym_AT] = ACTIONS(629), + [anon_sym_open] = ACTIONS(629), + [anon_sym_module] = ACTIONS(629), + [anon_sym_static] = ACTIONS(629), + [anon_sym_package] = ACTIONS(629), + [anon_sym_import] = ACTIONS(629), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_public] = ACTIONS(629), + [anon_sym_protected] = ACTIONS(629), + [anon_sym_private] = ACTIONS(629), + [anon_sym_abstract] = ACTIONS(629), + [anon_sym_strictfp] = ACTIONS(629), + [anon_sym_native] = ACTIONS(629), + [anon_sym_transient] = ACTIONS(629), + [anon_sym_volatile] = ACTIONS(629), + [anon_sym_sealed] = ACTIONS(629), + [anon_sym_non_DASHsealed] = ACTIONS(627), + [anon_sym_record] = ACTIONS(629), + [anon_sym_ATinterface] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(629), + [anon_sym_byte] = ACTIONS(629), + [anon_sym_short] = ACTIONS(629), + [anon_sym_int] = ACTIONS(629), + [anon_sym_long] = ACTIONS(629), + [anon_sym_char] = ACTIONS(629), + [anon_sym_float] = ACTIONS(629), + [anon_sym_double] = ACTIONS(629), + [sym_boolean_type] = ACTIONS(629), + [sym_void_type] = ACTIONS(629), + [sym_this] = ACTIONS(629), + [sym_super] = ACTIONS(629), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_catch_clause] = STATE(214), - [sym_finally_clause] = STATE(325), - [aux_sym_try_statement_repeat1] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [sym_decimal_integer_literal] = ACTIONS(586), - [sym_hex_integer_literal] = ACTIONS(586), - [sym_octal_integer_literal] = ACTIONS(586), - [sym_binary_integer_literal] = ACTIONS(584), - [sym_decimal_floating_point_literal] = ACTIONS(584), - [sym_hex_floating_point_literal] = ACTIONS(586), - [sym_true] = ACTIONS(586), - [sym_false] = ACTIONS(586), - [sym_character_literal] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [sym_null_literal] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_final] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_PLUS_PLUS] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(584), - [anon_sym_new] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_case] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_assert] = ACTIONS(586), - [anon_sym_do] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_synchronized] = ACTIONS(586), - [anon_sym_throw] = ACTIONS(586), - [anon_sym_try] = ACTIONS(586), - [anon_sym_catch] = ACTIONS(570), - [anon_sym_finally] = ACTIONS(572), - [anon_sym_if] = ACTIONS(586), - [anon_sym_else] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(586), - [anon_sym_open] = ACTIONS(586), - [anon_sym_module] = ACTIONS(586), - [anon_sym_static] = ACTIONS(586), - [anon_sym_with] = ACTIONS(586), - [anon_sym_package] = ACTIONS(586), - [anon_sym_import] = ACTIONS(586), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_public] = ACTIONS(586), - [anon_sym_protected] = ACTIONS(586), - [anon_sym_private] = ACTIONS(586), - [anon_sym_abstract] = ACTIONS(586), - [anon_sym_strictfp] = ACTIONS(586), - [anon_sym_native] = ACTIONS(586), - [anon_sym_transient] = ACTIONS(586), - [anon_sym_volatile] = ACTIONS(586), - [anon_sym_sealed] = ACTIONS(586), - [anon_sym_non_DASHsealed] = ACTIONS(584), - [anon_sym_record] = ACTIONS(586), - [anon_sym_ATinterface] = ACTIONS(584), - [anon_sym_interface] = ACTIONS(586), - [anon_sym_byte] = ACTIONS(586), - [anon_sym_short] = ACTIONS(586), - [anon_sym_int] = ACTIONS(586), - [anon_sym_long] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_float] = ACTIONS(586), - [anon_sym_double] = ACTIONS(586), - [sym_boolean_type] = ACTIONS(586), - [sym_void_type] = ACTIONS(586), - [sym_this] = ACTIONS(586), - [sym_super] = ACTIONS(586), + [STATE(167)] = { + [ts_builtin_sym_end] = ACTIONS(631), + [sym_identifier] = ACTIONS(633), + [sym_decimal_integer_literal] = ACTIONS(633), + [sym_hex_integer_literal] = ACTIONS(633), + [sym_octal_integer_literal] = ACTIONS(633), + [sym_binary_integer_literal] = ACTIONS(631), + [sym_decimal_floating_point_literal] = ACTIONS(631), + [sym_hex_floating_point_literal] = ACTIONS(633), + [sym_true] = ACTIONS(633), + [sym_false] = ACTIONS(633), + [sym_character_literal] = ACTIONS(631), + [anon_sym_DQUOTE] = ACTIONS(633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(631), + [anon_sym_RBRACE] = ACTIONS(631), + [sym_null_literal] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_final] = ACTIONS(633), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_PLUS_PLUS] = ACTIONS(631), + [anon_sym_DASH_DASH] = ACTIONS(631), + [anon_sym_new] = ACTIONS(633), + [anon_sym_class] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_case] = ACTIONS(633), + [anon_sym_default] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym_assert] = ACTIONS(633), + [anon_sym_do] = ACTIONS(633), + [anon_sym_while] = ACTIONS(633), + [anon_sym_break] = ACTIONS(633), + [anon_sym_continue] = ACTIONS(633), + [anon_sym_return] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(633), + [anon_sym_synchronized] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(633), + [anon_sym_try] = ACTIONS(633), + [anon_sym_if] = ACTIONS(633), + [anon_sym_else] = ACTIONS(633), + [anon_sym_for] = ACTIONS(633), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_open] = ACTIONS(633), + [anon_sym_module] = ACTIONS(633), + [anon_sym_static] = ACTIONS(633), + [anon_sym_package] = ACTIONS(633), + [anon_sym_import] = ACTIONS(633), + [anon_sym_enum] = ACTIONS(633), + [anon_sym_public] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(633), + [anon_sym_strictfp] = ACTIONS(633), + [anon_sym_native] = ACTIONS(633), + [anon_sym_transient] = ACTIONS(633), + [anon_sym_volatile] = ACTIONS(633), + [anon_sym_sealed] = ACTIONS(633), + [anon_sym_non_DASHsealed] = ACTIONS(631), + [anon_sym_record] = ACTIONS(633), + [anon_sym_ATinterface] = ACTIONS(631), + [anon_sym_interface] = ACTIONS(633), + [anon_sym_byte] = ACTIONS(633), + [anon_sym_short] = ACTIONS(633), + [anon_sym_int] = ACTIONS(633), + [anon_sym_long] = ACTIONS(633), + [anon_sym_char] = ACTIONS(633), + [anon_sym_float] = ACTIONS(633), + [anon_sym_double] = ACTIONS(633), + [sym_boolean_type] = ACTIONS(633), + [sym_void_type] = ACTIONS(633), + [sym_this] = ACTIONS(633), + [sym_super] = ACTIONS(633), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(659), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(168)] = { + [ts_builtin_sym_end] = ACTIONS(635), + [sym_identifier] = ACTIONS(637), + [sym_decimal_integer_literal] = ACTIONS(637), + [sym_hex_integer_literal] = ACTIONS(637), + [sym_octal_integer_literal] = ACTIONS(637), + [sym_binary_integer_literal] = ACTIONS(635), + [sym_decimal_floating_point_literal] = ACTIONS(635), + [sym_hex_floating_point_literal] = ACTIONS(637), + [sym_true] = ACTIONS(637), + [sym_false] = ACTIONS(637), + [sym_character_literal] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(635), + [anon_sym_RBRACE] = ACTIONS(635), + [sym_null_literal] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_final] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_TILDE] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(635), + [anon_sym_DASH_DASH] = ACTIONS(635), + [anon_sym_new] = ACTIONS(637), + [anon_sym_class] = ACTIONS(637), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_assert] = ACTIONS(637), + [anon_sym_do] = ACTIONS(637), + [anon_sym_while] = ACTIONS(637), + [anon_sym_break] = ACTIONS(637), + [anon_sym_continue] = ACTIONS(637), + [anon_sym_return] = ACTIONS(637), + [anon_sym_yield] = ACTIONS(637), + [anon_sym_synchronized] = ACTIONS(637), + [anon_sym_throw] = ACTIONS(637), + [anon_sym_try] = ACTIONS(637), + [anon_sym_if] = ACTIONS(637), + [anon_sym_else] = ACTIONS(637), + [anon_sym_for] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym_open] = ACTIONS(637), + [anon_sym_module] = ACTIONS(637), + [anon_sym_static] = ACTIONS(637), + [anon_sym_package] = ACTIONS(637), + [anon_sym_import] = ACTIONS(637), + [anon_sym_enum] = ACTIONS(637), + [anon_sym_public] = ACTIONS(637), + [anon_sym_protected] = ACTIONS(637), + [anon_sym_private] = ACTIONS(637), + [anon_sym_abstract] = ACTIONS(637), + [anon_sym_strictfp] = ACTIONS(637), + [anon_sym_native] = ACTIONS(637), + [anon_sym_transient] = ACTIONS(637), + [anon_sym_volatile] = ACTIONS(637), + [anon_sym_sealed] = ACTIONS(637), + [anon_sym_non_DASHsealed] = ACTIONS(635), + [anon_sym_record] = ACTIONS(637), + [anon_sym_ATinterface] = ACTIONS(635), + [anon_sym_interface] = ACTIONS(637), + [anon_sym_byte] = ACTIONS(637), + [anon_sym_short] = ACTIONS(637), + [anon_sym_int] = ACTIONS(637), + [anon_sym_long] = ACTIONS(637), + [anon_sym_char] = ACTIONS(637), + [anon_sym_float] = ACTIONS(637), + [anon_sym_double] = ACTIONS(637), + [sym_boolean_type] = ACTIONS(637), + [sym_void_type] = ACTIONS(637), + [sym_this] = ACTIONS(637), + [sym_super] = ACTIONS(637), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(742), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(169)] = { + [ts_builtin_sym_end] = ACTIONS(639), + [sym_identifier] = ACTIONS(641), + [sym_decimal_integer_literal] = ACTIONS(641), + [sym_hex_integer_literal] = ACTIONS(641), + [sym_octal_integer_literal] = ACTIONS(641), + [sym_binary_integer_literal] = ACTIONS(639), + [sym_decimal_floating_point_literal] = ACTIONS(639), + [sym_hex_floating_point_literal] = ACTIONS(641), + [sym_true] = ACTIONS(641), + [sym_false] = ACTIONS(641), + [sym_character_literal] = ACTIONS(639), + [anon_sym_DQUOTE] = ACTIONS(641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(639), + [anon_sym_RBRACE] = ACTIONS(639), + [sym_null_literal] = ACTIONS(641), + [anon_sym_LPAREN] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_final] = ACTIONS(641), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_PLUS_PLUS] = ACTIONS(639), + [anon_sym_DASH_DASH] = ACTIONS(639), + [anon_sym_new] = ACTIONS(641), + [anon_sym_class] = ACTIONS(641), + [anon_sym_switch] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(639), + [anon_sym_case] = ACTIONS(641), + [anon_sym_default] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(639), + [anon_sym_assert] = ACTIONS(641), + [anon_sym_do] = ACTIONS(641), + [anon_sym_while] = ACTIONS(641), + [anon_sym_break] = ACTIONS(641), + [anon_sym_continue] = ACTIONS(641), + [anon_sym_return] = ACTIONS(641), + [anon_sym_yield] = ACTIONS(641), + [anon_sym_synchronized] = ACTIONS(641), + [anon_sym_throw] = ACTIONS(641), + [anon_sym_try] = ACTIONS(641), + [anon_sym_if] = ACTIONS(641), + [anon_sym_else] = ACTIONS(641), + [anon_sym_for] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(641), + [anon_sym_open] = ACTIONS(641), + [anon_sym_module] = ACTIONS(641), + [anon_sym_static] = ACTIONS(641), + [anon_sym_package] = ACTIONS(641), + [anon_sym_import] = ACTIONS(641), + [anon_sym_enum] = ACTIONS(641), + [anon_sym_public] = ACTIONS(641), + [anon_sym_protected] = ACTIONS(641), + [anon_sym_private] = ACTIONS(641), + [anon_sym_abstract] = ACTIONS(641), + [anon_sym_strictfp] = ACTIONS(641), + [anon_sym_native] = ACTIONS(641), + [anon_sym_transient] = ACTIONS(641), + [anon_sym_volatile] = ACTIONS(641), + [anon_sym_sealed] = ACTIONS(641), + [anon_sym_non_DASHsealed] = ACTIONS(639), + [anon_sym_record] = ACTIONS(641), + [anon_sym_ATinterface] = ACTIONS(639), + [anon_sym_interface] = ACTIONS(641), + [anon_sym_byte] = ACTIONS(641), + [anon_sym_short] = ACTIONS(641), + [anon_sym_int] = ACTIONS(641), + [anon_sym_long] = ACTIONS(641), + [anon_sym_char] = ACTIONS(641), + [anon_sym_float] = ACTIONS(641), + [anon_sym_double] = ACTIONS(641), + [sym_boolean_type] = ACTIONS(641), + [sym_void_type] = ACTIONS(641), + [sym_this] = ACTIONS(641), + [sym_super] = ACTIONS(641), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(729), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(170)] = { + [ts_builtin_sym_end] = ACTIONS(643), + [sym_identifier] = ACTIONS(645), + [sym_decimal_integer_literal] = ACTIONS(645), + [sym_hex_integer_literal] = ACTIONS(645), + [sym_octal_integer_literal] = ACTIONS(645), + [sym_binary_integer_literal] = ACTIONS(643), + [sym_decimal_floating_point_literal] = ACTIONS(643), + [sym_hex_floating_point_literal] = ACTIONS(645), + [sym_true] = ACTIONS(645), + [sym_false] = ACTIONS(645), + [sym_character_literal] = ACTIONS(643), + [anon_sym_DQUOTE] = ACTIONS(645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(643), + [anon_sym_RBRACE] = ACTIONS(643), + [sym_null_literal] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_final] = ACTIONS(645), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_PLUS_PLUS] = ACTIONS(643), + [anon_sym_DASH_DASH] = ACTIONS(643), + [anon_sym_new] = ACTIONS(645), + [anon_sym_class] = ACTIONS(645), + [anon_sym_switch] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_case] = ACTIONS(645), + [anon_sym_default] = ACTIONS(645), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_assert] = ACTIONS(645), + [anon_sym_do] = ACTIONS(645), + [anon_sym_while] = ACTIONS(645), + [anon_sym_break] = ACTIONS(645), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_return] = ACTIONS(645), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_synchronized] = ACTIONS(645), + [anon_sym_throw] = ACTIONS(645), + [anon_sym_try] = ACTIONS(645), + [anon_sym_if] = ACTIONS(645), + [anon_sym_else] = ACTIONS(645), + [anon_sym_for] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(645), + [anon_sym_open] = ACTIONS(645), + [anon_sym_module] = ACTIONS(645), + [anon_sym_static] = ACTIONS(645), + [anon_sym_package] = ACTIONS(645), + [anon_sym_import] = ACTIONS(645), + [anon_sym_enum] = ACTIONS(645), + [anon_sym_public] = ACTIONS(645), + [anon_sym_protected] = ACTIONS(645), + [anon_sym_private] = ACTIONS(645), + [anon_sym_abstract] = ACTIONS(645), + [anon_sym_strictfp] = ACTIONS(645), + [anon_sym_native] = ACTIONS(645), + [anon_sym_transient] = ACTIONS(645), + [anon_sym_volatile] = ACTIONS(645), + [anon_sym_sealed] = ACTIONS(645), + [anon_sym_non_DASHsealed] = ACTIONS(643), + [anon_sym_record] = ACTIONS(645), + [anon_sym_ATinterface] = ACTIONS(643), + [anon_sym_interface] = ACTIONS(645), + [anon_sym_byte] = ACTIONS(645), + [anon_sym_short] = ACTIONS(645), + [anon_sym_int] = ACTIONS(645), + [anon_sym_long] = ACTIONS(645), + [anon_sym_char] = ACTIONS(645), + [anon_sym_float] = ACTIONS(645), + [anon_sym_double] = ACTIONS(645), + [sym_boolean_type] = ACTIONS(645), + [sym_void_type] = ACTIONS(645), + [sym_this] = ACTIONS(645), + [sym_super] = ACTIONS(645), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(709), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(171)] = { + [ts_builtin_sym_end] = ACTIONS(647), + [sym_identifier] = ACTIONS(649), + [sym_decimal_integer_literal] = ACTIONS(649), + [sym_hex_integer_literal] = ACTIONS(649), + [sym_octal_integer_literal] = ACTIONS(649), + [sym_binary_integer_literal] = ACTIONS(647), + [sym_decimal_floating_point_literal] = ACTIONS(647), + [sym_hex_floating_point_literal] = ACTIONS(649), + [sym_true] = ACTIONS(649), + [sym_false] = ACTIONS(649), + [sym_character_literal] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(647), + [anon_sym_RBRACE] = ACTIONS(647), + [sym_null_literal] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(647), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(649), + [anon_sym_final] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(647), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [anon_sym_new] = ACTIONS(649), + [anon_sym_class] = ACTIONS(649), + [anon_sym_switch] = ACTIONS(649), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_case] = ACTIONS(649), + [anon_sym_default] = ACTIONS(649), + [anon_sym_SEMI] = ACTIONS(647), + [anon_sym_assert] = ACTIONS(649), + [anon_sym_do] = ACTIONS(649), + [anon_sym_while] = ACTIONS(649), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(649), + [anon_sym_return] = ACTIONS(649), + [anon_sym_yield] = ACTIONS(649), + [anon_sym_synchronized] = ACTIONS(649), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_try] = ACTIONS(649), + [anon_sym_if] = ACTIONS(649), + [anon_sym_else] = ACTIONS(649), + [anon_sym_for] = ACTIONS(649), + [anon_sym_AT] = ACTIONS(649), + [anon_sym_open] = ACTIONS(649), + [anon_sym_module] = ACTIONS(649), + [anon_sym_static] = ACTIONS(649), + [anon_sym_package] = ACTIONS(649), + [anon_sym_import] = ACTIONS(649), + [anon_sym_enum] = ACTIONS(649), + [anon_sym_public] = ACTIONS(649), + [anon_sym_protected] = ACTIONS(649), + [anon_sym_private] = ACTIONS(649), + [anon_sym_abstract] = ACTIONS(649), + [anon_sym_strictfp] = ACTIONS(649), + [anon_sym_native] = ACTIONS(649), + [anon_sym_transient] = ACTIONS(649), + [anon_sym_volatile] = ACTIONS(649), + [anon_sym_sealed] = ACTIONS(649), + [anon_sym_non_DASHsealed] = ACTIONS(647), + [anon_sym_record] = ACTIONS(649), + [anon_sym_ATinterface] = ACTIONS(647), + [anon_sym_interface] = ACTIONS(649), + [anon_sym_byte] = ACTIONS(649), + [anon_sym_short] = ACTIONS(649), + [anon_sym_int] = ACTIONS(649), + [anon_sym_long] = ACTIONS(649), + [anon_sym_char] = ACTIONS(649), + [anon_sym_float] = ACTIONS(649), + [anon_sym_double] = ACTIONS(649), + [sym_boolean_type] = ACTIONS(649), + [sym_void_type] = ACTIONS(649), + [sym_this] = ACTIONS(649), + [sym_super] = ACTIONS(649), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(672), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(172)] = { + [ts_builtin_sym_end] = ACTIONS(651), + [sym_identifier] = ACTIONS(653), + [sym_decimal_integer_literal] = ACTIONS(653), + [sym_hex_integer_literal] = ACTIONS(653), + [sym_octal_integer_literal] = ACTIONS(653), + [sym_binary_integer_literal] = ACTIONS(651), + [sym_decimal_floating_point_literal] = ACTIONS(651), + [sym_hex_floating_point_literal] = ACTIONS(653), + [sym_true] = ACTIONS(653), + [sym_false] = ACTIONS(653), + [sym_character_literal] = ACTIONS(651), + [anon_sym_DQUOTE] = ACTIONS(653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(651), + [anon_sym_RBRACE] = ACTIONS(651), + [sym_null_literal] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_final] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_PLUS_PLUS] = ACTIONS(651), + [anon_sym_DASH_DASH] = ACTIONS(651), + [anon_sym_new] = ACTIONS(653), + [anon_sym_class] = ACTIONS(653), + [anon_sym_switch] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(651), + [anon_sym_case] = ACTIONS(653), + [anon_sym_default] = ACTIONS(653), + [anon_sym_SEMI] = ACTIONS(651), + [anon_sym_assert] = ACTIONS(653), + [anon_sym_do] = ACTIONS(653), + [anon_sym_while] = ACTIONS(653), + [anon_sym_break] = ACTIONS(653), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_return] = ACTIONS(653), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_synchronized] = ACTIONS(653), + [anon_sym_throw] = ACTIONS(653), + [anon_sym_try] = ACTIONS(653), + [anon_sym_if] = ACTIONS(653), + [anon_sym_else] = ACTIONS(653), + [anon_sym_for] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(653), + [anon_sym_open] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_static] = ACTIONS(653), + [anon_sym_package] = ACTIONS(653), + [anon_sym_import] = ACTIONS(653), + [anon_sym_enum] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_abstract] = ACTIONS(653), + [anon_sym_strictfp] = ACTIONS(653), + [anon_sym_native] = ACTIONS(653), + [anon_sym_transient] = ACTIONS(653), + [anon_sym_volatile] = ACTIONS(653), + [anon_sym_sealed] = ACTIONS(653), + [anon_sym_non_DASHsealed] = ACTIONS(651), + [anon_sym_record] = ACTIONS(653), + [anon_sym_ATinterface] = ACTIONS(651), + [anon_sym_interface] = ACTIONS(653), + [anon_sym_byte] = ACTIONS(653), + [anon_sym_short] = ACTIONS(653), + [anon_sym_int] = ACTIONS(653), + [anon_sym_long] = ACTIONS(653), + [anon_sym_char] = ACTIONS(653), + [anon_sym_float] = ACTIONS(653), + [anon_sym_double] = ACTIONS(653), + [sym_boolean_type] = ACTIONS(653), + [sym_void_type] = ACTIONS(653), + [sym_this] = ACTIONS(653), + [sym_super] = ACTIONS(653), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(673), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(173)] = { + [ts_builtin_sym_end] = ACTIONS(655), + [sym_identifier] = ACTIONS(657), + [sym_decimal_integer_literal] = ACTIONS(657), + [sym_hex_integer_literal] = ACTIONS(657), + [sym_octal_integer_literal] = ACTIONS(657), + [sym_binary_integer_literal] = ACTIONS(655), + [sym_decimal_floating_point_literal] = ACTIONS(655), + [sym_hex_floating_point_literal] = ACTIONS(657), + [sym_true] = ACTIONS(657), + [sym_false] = ACTIONS(657), + [sym_character_literal] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [sym_null_literal] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(657), + [anon_sym_DASH] = ACTIONS(657), + [anon_sym_final] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_new] = ACTIONS(657), + [anon_sym_class] = ACTIONS(657), + [anon_sym_switch] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(655), + [anon_sym_case] = ACTIONS(657), + [anon_sym_default] = ACTIONS(657), + [anon_sym_SEMI] = ACTIONS(655), + [anon_sym_assert] = ACTIONS(657), + [anon_sym_do] = ACTIONS(657), + [anon_sym_while] = ACTIONS(657), + [anon_sym_break] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(657), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(657), + [anon_sym_synchronized] = ACTIONS(657), + [anon_sym_throw] = ACTIONS(657), + [anon_sym_try] = ACTIONS(657), + [anon_sym_if] = ACTIONS(657), + [anon_sym_else] = ACTIONS(657), + [anon_sym_for] = ACTIONS(657), + [anon_sym_AT] = ACTIONS(657), + [anon_sym_open] = ACTIONS(657), + [anon_sym_module] = ACTIONS(657), + [anon_sym_static] = ACTIONS(657), + [anon_sym_package] = ACTIONS(657), + [anon_sym_import] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(657), + [anon_sym_public] = ACTIONS(657), + [anon_sym_protected] = ACTIONS(657), + [anon_sym_private] = ACTIONS(657), + [anon_sym_abstract] = ACTIONS(657), + [anon_sym_strictfp] = ACTIONS(657), + [anon_sym_native] = ACTIONS(657), + [anon_sym_transient] = ACTIONS(657), + [anon_sym_volatile] = ACTIONS(657), + [anon_sym_sealed] = ACTIONS(657), + [anon_sym_non_DASHsealed] = ACTIONS(655), + [anon_sym_record] = ACTIONS(657), + [anon_sym_ATinterface] = ACTIONS(655), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_byte] = ACTIONS(657), + [anon_sym_short] = ACTIONS(657), + [anon_sym_int] = ACTIONS(657), + [anon_sym_long] = ACTIONS(657), + [anon_sym_char] = ACTIONS(657), + [anon_sym_float] = ACTIONS(657), + [anon_sym_double] = ACTIONS(657), + [sym_boolean_type] = ACTIONS(657), + [sym_void_type] = ACTIONS(657), + [sym_this] = ACTIONS(657), + [sym_super] = ACTIONS(657), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(674), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(174)] = { + [ts_builtin_sym_end] = ACTIONS(659), + [sym_identifier] = ACTIONS(661), + [sym_decimal_integer_literal] = ACTIONS(661), + [sym_hex_integer_literal] = ACTIONS(661), + [sym_octal_integer_literal] = ACTIONS(661), + [sym_binary_integer_literal] = ACTIONS(659), + [sym_decimal_floating_point_literal] = ACTIONS(659), + [sym_hex_floating_point_literal] = ACTIONS(661), + [sym_true] = ACTIONS(661), + [sym_false] = ACTIONS(661), + [sym_character_literal] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), + [anon_sym_RBRACE] = ACTIONS(659), + [sym_null_literal] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(659), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_final] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [anon_sym_new] = ACTIONS(661), + [anon_sym_class] = ACTIONS(661), + [anon_sym_switch] = ACTIONS(661), + [anon_sym_LBRACE] = ACTIONS(659), + [anon_sym_case] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_assert] = ACTIONS(661), + [anon_sym_do] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(661), + [anon_sym_synchronized] = ACTIONS(661), + [anon_sym_throw] = ACTIONS(661), + [anon_sym_try] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_else] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_AT] = ACTIONS(661), + [anon_sym_open] = ACTIONS(661), + [anon_sym_module] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_package] = ACTIONS(661), + [anon_sym_import] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_public] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_strictfp] = ACTIONS(661), + [anon_sym_native] = ACTIONS(661), + [anon_sym_transient] = ACTIONS(661), + [anon_sym_volatile] = ACTIONS(661), + [anon_sym_sealed] = ACTIONS(661), + [anon_sym_non_DASHsealed] = ACTIONS(659), + [anon_sym_record] = ACTIONS(661), + [anon_sym_ATinterface] = ACTIONS(659), + [anon_sym_interface] = ACTIONS(661), + [anon_sym_byte] = ACTIONS(661), + [anon_sym_short] = ACTIONS(661), + [anon_sym_int] = ACTIONS(661), + [anon_sym_long] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_float] = ACTIONS(661), + [anon_sym_double] = ACTIONS(661), + [sym_boolean_type] = ACTIONS(661), + [sym_void_type] = ACTIONS(661), + [sym_this] = ACTIONS(661), + [sym_super] = ACTIONS(661), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [171] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(675), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(175)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(673), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym_array_initializer] = STATE(1148), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -30039,7 +30622,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(602), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30048,494 +30630,696 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(676), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(176)] = { + [ts_builtin_sym_end] = ACTIONS(663), + [sym_identifier] = ACTIONS(665), + [sym_decimal_integer_literal] = ACTIONS(665), + [sym_hex_integer_literal] = ACTIONS(665), + [sym_octal_integer_literal] = ACTIONS(665), + [sym_binary_integer_literal] = ACTIONS(663), + [sym_decimal_floating_point_literal] = ACTIONS(663), + [sym_hex_floating_point_literal] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_character_literal] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(665), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [sym_null_literal] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_final] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(665), + [anon_sym_class] = ACTIONS(665), + [anon_sym_switch] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_case] = ACTIONS(665), + [anon_sym_default] = ACTIONS(665), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_assert] = ACTIONS(665), + [anon_sym_do] = ACTIONS(665), + [anon_sym_while] = ACTIONS(665), + [anon_sym_break] = ACTIONS(665), + [anon_sym_continue] = ACTIONS(665), + [anon_sym_return] = ACTIONS(665), + [anon_sym_yield] = ACTIONS(665), + [anon_sym_synchronized] = ACTIONS(665), + [anon_sym_throw] = ACTIONS(665), + [anon_sym_try] = ACTIONS(665), + [anon_sym_if] = ACTIONS(665), + [anon_sym_else] = ACTIONS(665), + [anon_sym_for] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(665), + [anon_sym_open] = ACTIONS(665), + [anon_sym_module] = ACTIONS(665), + [anon_sym_static] = ACTIONS(665), + [anon_sym_package] = ACTIONS(665), + [anon_sym_import] = ACTIONS(665), + [anon_sym_enum] = ACTIONS(665), + [anon_sym_public] = ACTIONS(665), + [anon_sym_protected] = ACTIONS(665), + [anon_sym_private] = ACTIONS(665), + [anon_sym_abstract] = ACTIONS(665), + [anon_sym_strictfp] = ACTIONS(665), + [anon_sym_native] = ACTIONS(665), + [anon_sym_transient] = ACTIONS(665), + [anon_sym_volatile] = ACTIONS(665), + [anon_sym_sealed] = ACTIONS(665), + [anon_sym_non_DASHsealed] = ACTIONS(663), + [anon_sym_record] = ACTIONS(665), + [anon_sym_ATinterface] = ACTIONS(663), + [anon_sym_interface] = ACTIONS(665), + [anon_sym_byte] = ACTIONS(665), + [anon_sym_short] = ACTIONS(665), + [anon_sym_int] = ACTIONS(665), + [anon_sym_long] = ACTIONS(665), + [anon_sym_char] = ACTIONS(665), + [anon_sym_float] = ACTIONS(665), + [anon_sym_double] = ACTIONS(665), + [sym_boolean_type] = ACTIONS(665), + [sym_void_type] = ACTIONS(665), + [sym_this] = ACTIONS(665), + [sym_super] = ACTIONS(665), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(677), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(177)] = { + [ts_builtin_sym_end] = ACTIONS(667), + [sym_identifier] = ACTIONS(669), + [sym_decimal_integer_literal] = ACTIONS(669), + [sym_hex_integer_literal] = ACTIONS(669), + [sym_octal_integer_literal] = ACTIONS(669), + [sym_binary_integer_literal] = ACTIONS(667), + [sym_decimal_floating_point_literal] = ACTIONS(667), + [sym_hex_floating_point_literal] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_character_literal] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(669), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), + [anon_sym_RBRACE] = ACTIONS(667), + [sym_null_literal] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(667), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_final] = ACTIONS(669), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_TILDE] = ACTIONS(667), + [anon_sym_PLUS_PLUS] = ACTIONS(667), + [anon_sym_DASH_DASH] = ACTIONS(667), + [anon_sym_new] = ACTIONS(669), + [anon_sym_class] = ACTIONS(669), + [anon_sym_switch] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_case] = ACTIONS(669), + [anon_sym_default] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_assert] = ACTIONS(669), + [anon_sym_do] = ACTIONS(669), + [anon_sym_while] = ACTIONS(669), + [anon_sym_break] = ACTIONS(669), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_return] = ACTIONS(669), + [anon_sym_yield] = ACTIONS(669), + [anon_sym_synchronized] = ACTIONS(669), + [anon_sym_throw] = ACTIONS(669), + [anon_sym_try] = ACTIONS(669), + [anon_sym_if] = ACTIONS(669), + [anon_sym_else] = ACTIONS(669), + [anon_sym_for] = ACTIONS(669), + [anon_sym_AT] = ACTIONS(669), + [anon_sym_open] = ACTIONS(669), + [anon_sym_module] = ACTIONS(669), + [anon_sym_static] = ACTIONS(669), + [anon_sym_package] = ACTIONS(669), + [anon_sym_import] = ACTIONS(669), + [anon_sym_enum] = ACTIONS(669), + [anon_sym_public] = ACTIONS(669), + [anon_sym_protected] = ACTIONS(669), + [anon_sym_private] = ACTIONS(669), + [anon_sym_abstract] = ACTIONS(669), + [anon_sym_strictfp] = ACTIONS(669), + [anon_sym_native] = ACTIONS(669), + [anon_sym_transient] = ACTIONS(669), + [anon_sym_volatile] = ACTIONS(669), + [anon_sym_sealed] = ACTIONS(669), + [anon_sym_non_DASHsealed] = ACTIONS(667), + [anon_sym_record] = ACTIONS(669), + [anon_sym_ATinterface] = ACTIONS(667), + [anon_sym_interface] = ACTIONS(669), + [anon_sym_byte] = ACTIONS(669), + [anon_sym_short] = ACTIONS(669), + [anon_sym_int] = ACTIONS(669), + [anon_sym_long] = ACTIONS(669), + [anon_sym_char] = ACTIONS(669), + [anon_sym_float] = ACTIONS(669), + [anon_sym_double] = ACTIONS(669), + [sym_boolean_type] = ACTIONS(669), + [sym_void_type] = ACTIONS(669), + [sym_this] = ACTIONS(669), + [sym_super] = ACTIONS(669), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(678), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), + [STATE(178)] = { + [ts_builtin_sym_end] = ACTIONS(671), + [sym_identifier] = ACTIONS(673), + [sym_decimal_integer_literal] = ACTIONS(673), + [sym_hex_integer_literal] = ACTIONS(673), + [sym_octal_integer_literal] = ACTIONS(673), + [sym_binary_integer_literal] = ACTIONS(671), + [sym_decimal_floating_point_literal] = ACTIONS(671), + [sym_hex_floating_point_literal] = ACTIONS(673), + [sym_true] = ACTIONS(673), + [sym_false] = ACTIONS(673), + [sym_character_literal] = ACTIONS(671), + [anon_sym_DQUOTE] = ACTIONS(673), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(671), + [sym_null_literal] = ACTIONS(673), + [anon_sym_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_final] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(671), + [anon_sym_PLUS_PLUS] = ACTIONS(671), + [anon_sym_DASH_DASH] = ACTIONS(671), + [anon_sym_new] = ACTIONS(673), + [anon_sym_class] = ACTIONS(673), + [anon_sym_switch] = ACTIONS(673), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_case] = ACTIONS(673), + [anon_sym_default] = ACTIONS(673), + [anon_sym_SEMI] = ACTIONS(671), + [anon_sym_assert] = ACTIONS(673), + [anon_sym_do] = ACTIONS(673), + [anon_sym_while] = ACTIONS(673), + [anon_sym_break] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(673), + [anon_sym_return] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(673), + [anon_sym_synchronized] = ACTIONS(673), + [anon_sym_throw] = ACTIONS(673), + [anon_sym_try] = ACTIONS(673), + [anon_sym_if] = ACTIONS(673), + [anon_sym_else] = ACTIONS(673), + [anon_sym_for] = ACTIONS(673), + [anon_sym_AT] = ACTIONS(673), + [anon_sym_open] = ACTIONS(673), + [anon_sym_module] = ACTIONS(673), + [anon_sym_static] = ACTIONS(673), + [anon_sym_package] = ACTIONS(673), + [anon_sym_import] = ACTIONS(673), + [anon_sym_enum] = ACTIONS(673), + [anon_sym_public] = ACTIONS(673), + [anon_sym_protected] = ACTIONS(673), + [anon_sym_private] = ACTIONS(673), + [anon_sym_abstract] = ACTIONS(673), + [anon_sym_strictfp] = ACTIONS(673), + [anon_sym_native] = ACTIONS(673), + [anon_sym_transient] = ACTIONS(673), + [anon_sym_volatile] = ACTIONS(673), + [anon_sym_sealed] = ACTIONS(673), + [anon_sym_non_DASHsealed] = ACTIONS(671), + [anon_sym_record] = ACTIONS(673), + [anon_sym_ATinterface] = ACTIONS(671), + [anon_sym_interface] = ACTIONS(673), + [anon_sym_byte] = ACTIONS(673), + [anon_sym_short] = ACTIONS(673), + [anon_sym_int] = ACTIONS(673), + [anon_sym_long] = ACTIONS(673), + [anon_sym_char] = ACTIONS(673), + [anon_sym_float] = ACTIONS(673), + [anon_sym_double] = ACTIONS(673), + [sym_boolean_type] = ACTIONS(673), + [sym_void_type] = ACTIONS(673), + [sym_this] = ACTIONS(673), + [sym_super] = ACTIONS(673), + [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(679), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(179)] = { + [ts_builtin_sym_end] = ACTIONS(675), + [sym_identifier] = ACTIONS(677), + [sym_decimal_integer_literal] = ACTIONS(677), + [sym_hex_integer_literal] = ACTIONS(677), + [sym_octal_integer_literal] = ACTIONS(677), + [sym_binary_integer_literal] = ACTIONS(675), + [sym_decimal_floating_point_literal] = ACTIONS(675), + [sym_hex_floating_point_literal] = ACTIONS(677), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_character_literal] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(677), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(675), + [anon_sym_RBRACE] = ACTIONS(675), + [sym_null_literal] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_final] = ACTIONS(677), + [anon_sym_BANG] = ACTIONS(675), + [anon_sym_TILDE] = ACTIONS(675), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_new] = ACTIONS(677), + [anon_sym_class] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(675), + [anon_sym_case] = ACTIONS(677), + [anon_sym_default] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(675), + [anon_sym_assert] = ACTIONS(677), + [anon_sym_do] = ACTIONS(677), + [anon_sym_while] = ACTIONS(677), + [anon_sym_break] = ACTIONS(677), + [anon_sym_continue] = ACTIONS(677), + [anon_sym_return] = ACTIONS(677), + [anon_sym_yield] = ACTIONS(677), + [anon_sym_synchronized] = ACTIONS(677), + [anon_sym_throw] = ACTIONS(677), + [anon_sym_try] = ACTIONS(677), + [anon_sym_if] = ACTIONS(677), + [anon_sym_else] = ACTIONS(677), + [anon_sym_for] = ACTIONS(677), + [anon_sym_AT] = ACTIONS(677), + [anon_sym_open] = ACTIONS(677), + [anon_sym_module] = ACTIONS(677), + [anon_sym_static] = ACTIONS(677), + [anon_sym_package] = ACTIONS(677), + [anon_sym_import] = ACTIONS(677), + [anon_sym_enum] = ACTIONS(677), + [anon_sym_public] = ACTIONS(677), + [anon_sym_protected] = ACTIONS(677), + [anon_sym_private] = ACTIONS(677), + [anon_sym_abstract] = ACTIONS(677), + [anon_sym_strictfp] = ACTIONS(677), + [anon_sym_native] = ACTIONS(677), + [anon_sym_transient] = ACTIONS(677), + [anon_sym_volatile] = ACTIONS(677), + [anon_sym_sealed] = ACTIONS(677), + [anon_sym_non_DASHsealed] = ACTIONS(675), + [anon_sym_record] = ACTIONS(677), + [anon_sym_ATinterface] = ACTIONS(675), + [anon_sym_interface] = ACTIONS(677), + [anon_sym_byte] = ACTIONS(677), + [anon_sym_short] = ACTIONS(677), + [anon_sym_int] = ACTIONS(677), + [anon_sym_long] = ACTIONS(677), + [anon_sym_char] = ACTIONS(677), + [anon_sym_float] = ACTIONS(677), + [anon_sym_double] = ACTIONS(677), + [sym_boolean_type] = ACTIONS(677), + [sym_void_type] = ACTIONS(677), + [sym_this] = ACTIONS(677), + [sym_super] = ACTIONS(677), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(680), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(180)] = { + [ts_builtin_sym_end] = ACTIONS(679), + [sym_identifier] = ACTIONS(681), + [sym_decimal_integer_literal] = ACTIONS(681), + [sym_hex_integer_literal] = ACTIONS(681), + [sym_octal_integer_literal] = ACTIONS(681), + [sym_binary_integer_literal] = ACTIONS(679), + [sym_decimal_floating_point_literal] = ACTIONS(679), + [sym_hex_floating_point_literal] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [sym_character_literal] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(681), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), + [anon_sym_RBRACE] = ACTIONS(679), + [sym_null_literal] = ACTIONS(681), + [anon_sym_LPAREN] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_final] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(679), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_new] = ACTIONS(681), + [anon_sym_class] = ACTIONS(681), + [anon_sym_switch] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(679), + [anon_sym_case] = ACTIONS(681), + [anon_sym_default] = ACTIONS(681), + [anon_sym_SEMI] = ACTIONS(679), + [anon_sym_assert] = ACTIONS(681), + [anon_sym_do] = ACTIONS(681), + [anon_sym_while] = ACTIONS(681), + [anon_sym_break] = ACTIONS(681), + [anon_sym_continue] = ACTIONS(681), + [anon_sym_return] = ACTIONS(681), + [anon_sym_yield] = ACTIONS(681), + [anon_sym_synchronized] = ACTIONS(681), + [anon_sym_throw] = ACTIONS(681), + [anon_sym_try] = ACTIONS(681), + [anon_sym_if] = ACTIONS(681), + [anon_sym_else] = ACTIONS(681), + [anon_sym_for] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_open] = ACTIONS(681), + [anon_sym_module] = ACTIONS(681), + [anon_sym_static] = ACTIONS(681), + [anon_sym_package] = ACTIONS(681), + [anon_sym_import] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(681), + [anon_sym_public] = ACTIONS(681), + [anon_sym_protected] = ACTIONS(681), + [anon_sym_private] = ACTIONS(681), + [anon_sym_abstract] = ACTIONS(681), + [anon_sym_strictfp] = ACTIONS(681), + [anon_sym_native] = ACTIONS(681), + [anon_sym_transient] = ACTIONS(681), + [anon_sym_volatile] = ACTIONS(681), + [anon_sym_sealed] = ACTIONS(681), + [anon_sym_non_DASHsealed] = ACTIONS(679), + [anon_sym_record] = ACTIONS(681), + [anon_sym_ATinterface] = ACTIONS(679), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_byte] = ACTIONS(681), + [anon_sym_short] = ACTIONS(681), + [anon_sym_int] = ACTIONS(681), + [anon_sym_long] = ACTIONS(681), + [anon_sym_char] = ACTIONS(681), + [anon_sym_float] = ACTIONS(681), + [anon_sym_double] = ACTIONS(681), + [sym_boolean_type] = ACTIONS(681), + [sym_void_type] = ACTIONS(681), + [sym_this] = ACTIONS(681), + [sym_super] = ACTIONS(681), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(681), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(181)] = { + [ts_builtin_sym_end] = ACTIONS(683), + [sym_identifier] = ACTIONS(685), + [sym_decimal_integer_literal] = ACTIONS(685), + [sym_hex_integer_literal] = ACTIONS(685), + [sym_octal_integer_literal] = ACTIONS(685), + [sym_binary_integer_literal] = ACTIONS(683), + [sym_decimal_floating_point_literal] = ACTIONS(683), + [sym_hex_floating_point_literal] = ACTIONS(685), + [sym_true] = ACTIONS(685), + [sym_false] = ACTIONS(685), + [sym_character_literal] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(685), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(683), + [anon_sym_RBRACE] = ACTIONS(683), + [sym_null_literal] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_final] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_PLUS_PLUS] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(683), + [anon_sym_new] = ACTIONS(685), + [anon_sym_class] = ACTIONS(685), + [anon_sym_switch] = ACTIONS(685), + [anon_sym_LBRACE] = ACTIONS(683), + [anon_sym_case] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(683), + [anon_sym_assert] = ACTIONS(685), + [anon_sym_do] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_yield] = ACTIONS(685), + [anon_sym_synchronized] = ACTIONS(685), + [anon_sym_throw] = ACTIONS(685), + [anon_sym_try] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_else] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym_open] = ACTIONS(685), + [anon_sym_module] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_package] = ACTIONS(685), + [anon_sym_import] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_public] = ACTIONS(685), + [anon_sym_protected] = ACTIONS(685), + [anon_sym_private] = ACTIONS(685), + [anon_sym_abstract] = ACTIONS(685), + [anon_sym_strictfp] = ACTIONS(685), + [anon_sym_native] = ACTIONS(685), + [anon_sym_transient] = ACTIONS(685), + [anon_sym_volatile] = ACTIONS(685), + [anon_sym_sealed] = ACTIONS(685), + [anon_sym_non_DASHsealed] = ACTIONS(683), + [anon_sym_record] = ACTIONS(685), + [anon_sym_ATinterface] = ACTIONS(683), + [anon_sym_interface] = ACTIONS(685), + [anon_sym_byte] = ACTIONS(685), + [anon_sym_short] = ACTIONS(685), + [anon_sym_int] = ACTIONS(685), + [anon_sym_long] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_float] = ACTIONS(685), + [anon_sym_double] = ACTIONS(685), + [sym_boolean_type] = ACTIONS(685), + [sym_void_type] = ACTIONS(685), + [sym_this] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(182)] = { + [ts_builtin_sym_end] = ACTIONS(687), + [sym_identifier] = ACTIONS(689), + [sym_decimal_integer_literal] = ACTIONS(689), + [sym_hex_integer_literal] = ACTIONS(689), + [sym_octal_integer_literal] = ACTIONS(689), + [sym_binary_integer_literal] = ACTIONS(687), + [sym_decimal_floating_point_literal] = ACTIONS(687), + [sym_hex_floating_point_literal] = ACTIONS(689), + [sym_true] = ACTIONS(689), + [sym_false] = ACTIONS(689), + [sym_character_literal] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(687), + [anon_sym_RBRACE] = ACTIONS(687), + [sym_null_literal] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_final] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_TILDE] = ACTIONS(687), + [anon_sym_PLUS_PLUS] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(687), + [anon_sym_new] = ACTIONS(689), + [anon_sym_class] = ACTIONS(689), + [anon_sym_switch] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(687), + [anon_sym_case] = ACTIONS(689), + [anon_sym_default] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(687), + [anon_sym_assert] = ACTIONS(689), + [anon_sym_do] = ACTIONS(689), + [anon_sym_while] = ACTIONS(689), + [anon_sym_break] = ACTIONS(689), + [anon_sym_continue] = ACTIONS(689), + [anon_sym_return] = ACTIONS(689), + [anon_sym_yield] = ACTIONS(689), + [anon_sym_synchronized] = ACTIONS(689), + [anon_sym_throw] = ACTIONS(689), + [anon_sym_try] = ACTIONS(689), + [anon_sym_if] = ACTIONS(689), + [anon_sym_else] = ACTIONS(689), + [anon_sym_for] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(689), + [anon_sym_open] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_static] = ACTIONS(689), + [anon_sym_package] = ACTIONS(689), + [anon_sym_import] = ACTIONS(689), + [anon_sym_enum] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_abstract] = ACTIONS(689), + [anon_sym_strictfp] = ACTIONS(689), + [anon_sym_native] = ACTIONS(689), + [anon_sym_transient] = ACTIONS(689), + [anon_sym_volatile] = ACTIONS(689), + [anon_sym_sealed] = ACTIONS(689), + [anon_sym_non_DASHsealed] = ACTIONS(687), + [anon_sym_record] = ACTIONS(689), + [anon_sym_ATinterface] = ACTIONS(687), + [anon_sym_interface] = ACTIONS(689), + [anon_sym_byte] = ACTIONS(689), + [anon_sym_short] = ACTIONS(689), + [anon_sym_int] = ACTIONS(689), + [anon_sym_long] = ACTIONS(689), + [anon_sym_char] = ACTIONS(689), + [anon_sym_float] = ACTIONS(689), + [anon_sym_double] = ACTIONS(689), + [sym_boolean_type] = ACTIONS(689), + [sym_void_type] = ACTIONS(689), + [sym_this] = ACTIONS(689), + [sym_super] = ACTIONS(689), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(183)] = { + [ts_builtin_sym_end] = ACTIONS(691), + [sym_identifier] = ACTIONS(693), + [sym_decimal_integer_literal] = ACTIONS(693), + [sym_hex_integer_literal] = ACTIONS(693), + [sym_octal_integer_literal] = ACTIONS(693), + [sym_binary_integer_literal] = ACTIONS(691), + [sym_decimal_floating_point_literal] = ACTIONS(691), + [sym_hex_floating_point_literal] = ACTIONS(693), + [sym_true] = ACTIONS(693), + [sym_false] = ACTIONS(693), + [sym_character_literal] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(691), + [sym_null_literal] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(693), + [anon_sym_final] = ACTIONS(693), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_TILDE] = ACTIONS(691), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_new] = ACTIONS(693), + [anon_sym_class] = ACTIONS(693), + [anon_sym_switch] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_case] = ACTIONS(693), + [anon_sym_default] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(691), + [anon_sym_assert] = ACTIONS(693), + [anon_sym_do] = ACTIONS(693), + [anon_sym_while] = ACTIONS(693), + [anon_sym_break] = ACTIONS(693), + [anon_sym_continue] = ACTIONS(693), + [anon_sym_return] = ACTIONS(693), + [anon_sym_yield] = ACTIONS(693), + [anon_sym_synchronized] = ACTIONS(693), + [anon_sym_throw] = ACTIONS(693), + [anon_sym_try] = ACTIONS(693), + [anon_sym_if] = ACTIONS(693), + [anon_sym_else] = ACTIONS(693), + [anon_sym_for] = ACTIONS(693), + [anon_sym_AT] = ACTIONS(693), + [anon_sym_open] = ACTIONS(693), + [anon_sym_module] = ACTIONS(693), + [anon_sym_static] = ACTIONS(693), + [anon_sym_package] = ACTIONS(693), + [anon_sym_import] = ACTIONS(693), + [anon_sym_enum] = ACTIONS(693), + [anon_sym_public] = ACTIONS(693), + [anon_sym_protected] = ACTIONS(693), + [anon_sym_private] = ACTIONS(693), + [anon_sym_abstract] = ACTIONS(693), + [anon_sym_strictfp] = ACTIONS(693), + [anon_sym_native] = ACTIONS(693), + [anon_sym_transient] = ACTIONS(693), + [anon_sym_volatile] = ACTIONS(693), + [anon_sym_sealed] = ACTIONS(693), + [anon_sym_non_DASHsealed] = ACTIONS(691), + [anon_sym_record] = ACTIONS(693), + [anon_sym_ATinterface] = ACTIONS(691), + [anon_sym_interface] = ACTIONS(693), + [anon_sym_byte] = ACTIONS(693), + [anon_sym_short] = ACTIONS(693), + [anon_sym_int] = ACTIONS(693), + [anon_sym_long] = ACTIONS(693), + [anon_sym_char] = ACTIONS(693), + [anon_sym_float] = ACTIONS(693), + [anon_sym_double] = ACTIONS(693), + [sym_boolean_type] = ACTIONS(693), + [sym_void_type] = ACTIONS(693), + [sym_this] = ACTIONS(693), + [sym_super] = ACTIONS(693), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(184)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(632), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym_array_initializer] = STATE(1039), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -30549,7 +31333,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(614), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30558,154 +31341,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(683), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(185)] = { + [ts_builtin_sym_end] = ACTIONS(695), + [sym_identifier] = ACTIONS(697), + [sym_decimal_integer_literal] = ACTIONS(697), + [sym_hex_integer_literal] = ACTIONS(697), + [sym_octal_integer_literal] = ACTIONS(697), + [sym_binary_integer_literal] = ACTIONS(695), + [sym_decimal_floating_point_literal] = ACTIONS(695), + [sym_hex_floating_point_literal] = ACTIONS(697), + [sym_true] = ACTIONS(697), + [sym_false] = ACTIONS(697), + [sym_character_literal] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(697), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [sym_null_literal] = ACTIONS(697), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_final] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(695), + [anon_sym_PLUS_PLUS] = ACTIONS(695), + [anon_sym_DASH_DASH] = ACTIONS(695), + [anon_sym_new] = ACTIONS(697), + [anon_sym_class] = ACTIONS(697), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_case] = ACTIONS(697), + [anon_sym_default] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(695), + [anon_sym_assert] = ACTIONS(697), + [anon_sym_do] = ACTIONS(697), + [anon_sym_while] = ACTIONS(697), + [anon_sym_break] = ACTIONS(697), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_return] = ACTIONS(697), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_synchronized] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_try] = ACTIONS(697), + [anon_sym_if] = ACTIONS(697), + [anon_sym_else] = ACTIONS(697), + [anon_sym_for] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_open] = ACTIONS(697), + [anon_sym_module] = ACTIONS(697), + [anon_sym_static] = ACTIONS(697), + [anon_sym_package] = ACTIONS(697), + [anon_sym_import] = ACTIONS(697), + [anon_sym_enum] = ACTIONS(697), + [anon_sym_public] = ACTIONS(697), + [anon_sym_protected] = ACTIONS(697), + [anon_sym_private] = ACTIONS(697), + [anon_sym_abstract] = ACTIONS(697), + [anon_sym_strictfp] = ACTIONS(697), + [anon_sym_native] = ACTIONS(697), + [anon_sym_transient] = ACTIONS(697), + [anon_sym_volatile] = ACTIONS(697), + [anon_sym_sealed] = ACTIONS(697), + [anon_sym_non_DASHsealed] = ACTIONS(695), + [anon_sym_record] = ACTIONS(697), + [anon_sym_ATinterface] = ACTIONS(695), + [anon_sym_interface] = ACTIONS(697), + [anon_sym_byte] = ACTIONS(697), + [anon_sym_short] = ACTIONS(697), + [anon_sym_int] = ACTIONS(697), + [anon_sym_long] = ACTIONS(697), + [anon_sym_char] = ACTIONS(697), + [anon_sym_float] = ACTIONS(697), + [anon_sym_double] = ACTIONS(697), + [sym_boolean_type] = ACTIONS(697), + [sym_void_type] = ACTIONS(697), + [sym_this] = ACTIONS(697), + [sym_super] = ACTIONS(697), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [179] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(684), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), + [STATE(186)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(593), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym_block] = STATE(582), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(9), @@ -30719,7 +31491,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(618), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(25), @@ -30728,16803 +31499,15498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(27), [anon_sym_new] = ACTIONS(29), [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [180] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(685), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(187)] = { + [ts_builtin_sym_end] = ACTIONS(699), + [sym_identifier] = ACTIONS(701), + [sym_decimal_integer_literal] = ACTIONS(701), + [sym_hex_integer_literal] = ACTIONS(701), + [sym_octal_integer_literal] = ACTIONS(701), + [sym_binary_integer_literal] = ACTIONS(699), + [sym_decimal_floating_point_literal] = ACTIONS(699), + [sym_hex_floating_point_literal] = ACTIONS(701), + [sym_true] = ACTIONS(701), + [sym_false] = ACTIONS(701), + [sym_character_literal] = ACTIONS(699), + [anon_sym_DQUOTE] = ACTIONS(701), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(699), + [sym_null_literal] = ACTIONS(701), + [anon_sym_LPAREN] = ACTIONS(699), + [anon_sym_LT] = ACTIONS(699), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_final] = ACTIONS(701), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_PLUS_PLUS] = ACTIONS(699), + [anon_sym_DASH_DASH] = ACTIONS(699), + [anon_sym_new] = ACTIONS(701), + [anon_sym_class] = ACTIONS(701), + [anon_sym_switch] = ACTIONS(701), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_case] = ACTIONS(701), + [anon_sym_default] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(699), + [anon_sym_assert] = ACTIONS(701), + [anon_sym_do] = ACTIONS(701), + [anon_sym_while] = ACTIONS(701), + [anon_sym_break] = ACTIONS(701), + [anon_sym_continue] = ACTIONS(701), + [anon_sym_return] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(701), + [anon_sym_synchronized] = ACTIONS(701), + [anon_sym_throw] = ACTIONS(701), + [anon_sym_try] = ACTIONS(701), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(701), + [anon_sym_for] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(701), + [anon_sym_open] = ACTIONS(701), + [anon_sym_module] = ACTIONS(701), + [anon_sym_static] = ACTIONS(701), + [anon_sym_package] = ACTIONS(701), + [anon_sym_import] = ACTIONS(701), + [anon_sym_enum] = ACTIONS(701), + [anon_sym_public] = ACTIONS(701), + [anon_sym_protected] = ACTIONS(701), + [anon_sym_private] = ACTIONS(701), + [anon_sym_abstract] = ACTIONS(701), + [anon_sym_strictfp] = ACTIONS(701), + [anon_sym_native] = ACTIONS(701), + [anon_sym_transient] = ACTIONS(701), + [anon_sym_volatile] = ACTIONS(701), + [anon_sym_sealed] = ACTIONS(701), + [anon_sym_non_DASHsealed] = ACTIONS(699), + [anon_sym_record] = ACTIONS(701), + [anon_sym_ATinterface] = ACTIONS(699), + [anon_sym_interface] = ACTIONS(701), + [anon_sym_byte] = ACTIONS(701), + [anon_sym_short] = ACTIONS(701), + [anon_sym_int] = ACTIONS(701), + [anon_sym_long] = ACTIONS(701), + [anon_sym_char] = ACTIONS(701), + [anon_sym_float] = ACTIONS(701), + [anon_sym_double] = ACTIONS(701), + [sym_boolean_type] = ACTIONS(701), + [sym_void_type] = ACTIONS(701), + [sym_this] = ACTIONS(701), + [sym_super] = ACTIONS(701), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [181] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(686), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(188)] = { + [ts_builtin_sym_end] = ACTIONS(703), + [sym_identifier] = ACTIONS(705), + [sym_decimal_integer_literal] = ACTIONS(705), + [sym_hex_integer_literal] = ACTIONS(705), + [sym_octal_integer_literal] = ACTIONS(705), + [sym_binary_integer_literal] = ACTIONS(703), + [sym_decimal_floating_point_literal] = ACTIONS(703), + [sym_hex_floating_point_literal] = ACTIONS(705), + [sym_true] = ACTIONS(705), + [sym_false] = ACTIONS(705), + [sym_character_literal] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(703), + [sym_null_literal] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_final] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_TILDE] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(703), + [anon_sym_DASH_DASH] = ACTIONS(703), + [anon_sym_new] = ACTIONS(705), + [anon_sym_class] = ACTIONS(705), + [anon_sym_switch] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_case] = ACTIONS(705), + [anon_sym_default] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_assert] = ACTIONS(705), + [anon_sym_do] = ACTIONS(705), + [anon_sym_while] = ACTIONS(705), + [anon_sym_break] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(705), + [anon_sym_return] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(705), + [anon_sym_synchronized] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(705), + [anon_sym_try] = ACTIONS(705), + [anon_sym_if] = ACTIONS(705), + [anon_sym_else] = ACTIONS(705), + [anon_sym_for] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_open] = ACTIONS(705), + [anon_sym_module] = ACTIONS(705), + [anon_sym_static] = ACTIONS(705), + [anon_sym_package] = ACTIONS(705), + [anon_sym_import] = ACTIONS(705), + [anon_sym_enum] = ACTIONS(705), + [anon_sym_public] = ACTIONS(705), + [anon_sym_protected] = ACTIONS(705), + [anon_sym_private] = ACTIONS(705), + [anon_sym_abstract] = ACTIONS(705), + [anon_sym_strictfp] = ACTIONS(705), + [anon_sym_native] = ACTIONS(705), + [anon_sym_transient] = ACTIONS(705), + [anon_sym_volatile] = ACTIONS(705), + [anon_sym_sealed] = ACTIONS(705), + [anon_sym_non_DASHsealed] = ACTIONS(703), + [anon_sym_record] = ACTIONS(705), + [anon_sym_ATinterface] = ACTIONS(703), + [anon_sym_interface] = ACTIONS(705), + [anon_sym_byte] = ACTIONS(705), + [anon_sym_short] = ACTIONS(705), + [anon_sym_int] = ACTIONS(705), + [anon_sym_long] = ACTIONS(705), + [anon_sym_char] = ACTIONS(705), + [anon_sym_float] = ACTIONS(705), + [anon_sym_double] = ACTIONS(705), + [sym_boolean_type] = ACTIONS(705), + [sym_void_type] = ACTIONS(705), + [sym_this] = ACTIONS(705), + [sym_super] = ACTIONS(705), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [182] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(687), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(189)] = { + [ts_builtin_sym_end] = ACTIONS(707), + [sym_identifier] = ACTIONS(709), + [sym_decimal_integer_literal] = ACTIONS(709), + [sym_hex_integer_literal] = ACTIONS(709), + [sym_octal_integer_literal] = ACTIONS(709), + [sym_binary_integer_literal] = ACTIONS(707), + [sym_decimal_floating_point_literal] = ACTIONS(707), + [sym_hex_floating_point_literal] = ACTIONS(709), + [sym_true] = ACTIONS(709), + [sym_false] = ACTIONS(709), + [sym_character_literal] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), + [anon_sym_RBRACE] = ACTIONS(707), + [sym_null_literal] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_final] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [anon_sym_new] = ACTIONS(709), + [anon_sym_class] = ACTIONS(709), + [anon_sym_switch] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_case] = ACTIONS(709), + [anon_sym_default] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_assert] = ACTIONS(709), + [anon_sym_do] = ACTIONS(709), + [anon_sym_while] = ACTIONS(709), + [anon_sym_break] = ACTIONS(709), + [anon_sym_continue] = ACTIONS(709), + [anon_sym_return] = ACTIONS(709), + [anon_sym_yield] = ACTIONS(709), + [anon_sym_synchronized] = ACTIONS(709), + [anon_sym_throw] = ACTIONS(709), + [anon_sym_try] = ACTIONS(709), + [anon_sym_if] = ACTIONS(709), + [anon_sym_else] = ACTIONS(709), + [anon_sym_for] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_open] = ACTIONS(709), + [anon_sym_module] = ACTIONS(709), + [anon_sym_static] = ACTIONS(709), + [anon_sym_package] = ACTIONS(709), + [anon_sym_import] = ACTIONS(709), + [anon_sym_enum] = ACTIONS(709), + [anon_sym_public] = ACTIONS(709), + [anon_sym_protected] = ACTIONS(709), + [anon_sym_private] = ACTIONS(709), + [anon_sym_abstract] = ACTIONS(709), + [anon_sym_strictfp] = ACTIONS(709), + [anon_sym_native] = ACTIONS(709), + [anon_sym_transient] = ACTIONS(709), + [anon_sym_volatile] = ACTIONS(709), + [anon_sym_sealed] = ACTIONS(709), + [anon_sym_non_DASHsealed] = ACTIONS(707), + [anon_sym_record] = ACTIONS(709), + [anon_sym_ATinterface] = ACTIONS(707), + [anon_sym_interface] = ACTIONS(709), + [anon_sym_byte] = ACTIONS(709), + [anon_sym_short] = ACTIONS(709), + [anon_sym_int] = ACTIONS(709), + [anon_sym_long] = ACTIONS(709), + [anon_sym_char] = ACTIONS(709), + [anon_sym_float] = ACTIONS(709), + [anon_sym_double] = ACTIONS(709), + [sym_boolean_type] = ACTIONS(709), + [sym_void_type] = ACTIONS(709), + [sym_this] = ACTIONS(709), + [sym_super] = ACTIONS(709), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [183] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(744), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(190)] = { + [ts_builtin_sym_end] = ACTIONS(711), + [sym_identifier] = ACTIONS(713), + [sym_decimal_integer_literal] = ACTIONS(713), + [sym_hex_integer_literal] = ACTIONS(713), + [sym_octal_integer_literal] = ACTIONS(713), + [sym_binary_integer_literal] = ACTIONS(711), + [sym_decimal_floating_point_literal] = ACTIONS(711), + [sym_hex_floating_point_literal] = ACTIONS(713), + [sym_true] = ACTIONS(713), + [sym_false] = ACTIONS(713), + [sym_character_literal] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), + [anon_sym_RBRACE] = ACTIONS(711), + [sym_null_literal] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_final] = ACTIONS(713), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_TILDE] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_new] = ACTIONS(713), + [anon_sym_class] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(711), + [anon_sym_case] = ACTIONS(713), + [anon_sym_default] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_assert] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_yield] = ACTIONS(713), + [anon_sym_synchronized] = ACTIONS(713), + [anon_sym_throw] = ACTIONS(713), + [anon_sym_try] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_else] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_AT] = ACTIONS(713), + [anon_sym_open] = ACTIONS(713), + [anon_sym_module] = ACTIONS(713), + [anon_sym_static] = ACTIONS(713), + [anon_sym_package] = ACTIONS(713), + [anon_sym_import] = ACTIONS(713), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_public] = ACTIONS(713), + [anon_sym_protected] = ACTIONS(713), + [anon_sym_private] = ACTIONS(713), + [anon_sym_abstract] = ACTIONS(713), + [anon_sym_strictfp] = ACTIONS(713), + [anon_sym_native] = ACTIONS(713), + [anon_sym_transient] = ACTIONS(713), + [anon_sym_volatile] = ACTIONS(713), + [anon_sym_sealed] = ACTIONS(713), + [anon_sym_non_DASHsealed] = ACTIONS(711), + [anon_sym_record] = ACTIONS(713), + [anon_sym_ATinterface] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(713), + [anon_sym_byte] = ACTIONS(713), + [anon_sym_short] = ACTIONS(713), + [anon_sym_int] = ACTIONS(713), + [anon_sym_long] = ACTIONS(713), + [anon_sym_char] = ACTIONS(713), + [anon_sym_float] = ACTIONS(713), + [anon_sym_double] = ACTIONS(713), + [sym_boolean_type] = ACTIONS(713), + [sym_void_type] = ACTIONS(713), + [sym_this] = ACTIONS(713), + [sym_super] = ACTIONS(713), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [184] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(745), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [185] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(746), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(630), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [186] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(747), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(191)] = { + [ts_builtin_sym_end] = ACTIONS(715), + [sym_identifier] = ACTIONS(717), + [sym_decimal_integer_literal] = ACTIONS(717), + [sym_hex_integer_literal] = ACTIONS(717), + [sym_octal_integer_literal] = ACTIONS(717), + [sym_binary_integer_literal] = ACTIONS(715), + [sym_decimal_floating_point_literal] = ACTIONS(715), + [sym_hex_floating_point_literal] = ACTIONS(717), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [sym_character_literal] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(717), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(715), + [sym_null_literal] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_final] = ACTIONS(717), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_TILDE] = ACTIONS(715), + [anon_sym_PLUS_PLUS] = ACTIONS(715), + [anon_sym_DASH_DASH] = ACTIONS(715), + [anon_sym_new] = ACTIONS(717), + [anon_sym_class] = ACTIONS(717), + [anon_sym_switch] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_case] = ACTIONS(717), + [anon_sym_default] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(715), + [anon_sym_assert] = ACTIONS(717), + [anon_sym_do] = ACTIONS(717), + [anon_sym_while] = ACTIONS(717), + [anon_sym_break] = ACTIONS(717), + [anon_sym_continue] = ACTIONS(717), + [anon_sym_return] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(717), + [anon_sym_synchronized] = ACTIONS(717), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_try] = ACTIONS(717), + [anon_sym_if] = ACTIONS(717), + [anon_sym_else] = ACTIONS(717), + [anon_sym_for] = ACTIONS(717), + [anon_sym_AT] = ACTIONS(717), + [anon_sym_open] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_static] = ACTIONS(717), + [anon_sym_package] = ACTIONS(717), + [anon_sym_import] = ACTIONS(717), + [anon_sym_enum] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_abstract] = ACTIONS(717), + [anon_sym_strictfp] = ACTIONS(717), + [anon_sym_native] = ACTIONS(717), + [anon_sym_transient] = ACTIONS(717), + [anon_sym_volatile] = ACTIONS(717), + [anon_sym_sealed] = ACTIONS(717), + [anon_sym_non_DASHsealed] = ACTIONS(715), + [anon_sym_record] = ACTIONS(717), + [anon_sym_ATinterface] = ACTIONS(715), + [anon_sym_interface] = ACTIONS(717), + [anon_sym_byte] = ACTIONS(717), + [anon_sym_short] = ACTIONS(717), + [anon_sym_int] = ACTIONS(717), + [anon_sym_long] = ACTIONS(717), + [anon_sym_char] = ACTIONS(717), + [anon_sym_float] = ACTIONS(717), + [anon_sym_double] = ACTIONS(717), + [sym_boolean_type] = ACTIONS(717), + [sym_void_type] = ACTIONS(717), + [sym_this] = ACTIONS(717), + [sym_super] = ACTIONS(717), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(748), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(192)] = { + [ts_builtin_sym_end] = ACTIONS(719), + [sym_identifier] = ACTIONS(721), + [sym_decimal_integer_literal] = ACTIONS(721), + [sym_hex_integer_literal] = ACTIONS(721), + [sym_octal_integer_literal] = ACTIONS(721), + [sym_binary_integer_literal] = ACTIONS(719), + [sym_decimal_floating_point_literal] = ACTIONS(719), + [sym_hex_floating_point_literal] = ACTIONS(721), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_character_literal] = ACTIONS(719), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(719), + [anon_sym_RBRACE] = ACTIONS(719), + [sym_null_literal] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(719), + [anon_sym_LT] = ACTIONS(719), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_final] = ACTIONS(721), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(719), + [anon_sym_PLUS_PLUS] = ACTIONS(719), + [anon_sym_DASH_DASH] = ACTIONS(719), + [anon_sym_new] = ACTIONS(721), + [anon_sym_class] = ACTIONS(721), + [anon_sym_switch] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_case] = ACTIONS(721), + [anon_sym_default] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(719), + [anon_sym_assert] = ACTIONS(721), + [anon_sym_do] = ACTIONS(721), + [anon_sym_while] = ACTIONS(721), + [anon_sym_break] = ACTIONS(721), + [anon_sym_continue] = ACTIONS(721), + [anon_sym_return] = ACTIONS(721), + [anon_sym_yield] = ACTIONS(721), + [anon_sym_synchronized] = ACTIONS(721), + [anon_sym_throw] = ACTIONS(721), + [anon_sym_try] = ACTIONS(721), + [anon_sym_if] = ACTIONS(721), + [anon_sym_else] = ACTIONS(721), + [anon_sym_for] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(721), + [anon_sym_open] = ACTIONS(721), + [anon_sym_module] = ACTIONS(721), + [anon_sym_static] = ACTIONS(721), + [anon_sym_package] = ACTIONS(721), + [anon_sym_import] = ACTIONS(721), + [anon_sym_enum] = ACTIONS(721), + [anon_sym_public] = ACTIONS(721), + [anon_sym_protected] = ACTIONS(721), + [anon_sym_private] = ACTIONS(721), + [anon_sym_abstract] = ACTIONS(721), + [anon_sym_strictfp] = ACTIONS(721), + [anon_sym_native] = ACTIONS(721), + [anon_sym_transient] = ACTIONS(721), + [anon_sym_volatile] = ACTIONS(721), + [anon_sym_sealed] = ACTIONS(721), + [anon_sym_non_DASHsealed] = ACTIONS(719), + [anon_sym_record] = ACTIONS(721), + [anon_sym_ATinterface] = ACTIONS(719), + [anon_sym_interface] = ACTIONS(721), + [anon_sym_byte] = ACTIONS(721), + [anon_sym_short] = ACTIONS(721), + [anon_sym_int] = ACTIONS(721), + [anon_sym_long] = ACTIONS(721), + [anon_sym_char] = ACTIONS(721), + [anon_sym_float] = ACTIONS(721), + [anon_sym_double] = ACTIONS(721), + [sym_boolean_type] = ACTIONS(721), + [sym_void_type] = ACTIONS(721), + [sym_this] = ACTIONS(721), + [sym_super] = ACTIONS(721), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [188] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(749), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(193)] = { + [ts_builtin_sym_end] = ACTIONS(723), + [sym_identifier] = ACTIONS(725), + [sym_decimal_integer_literal] = ACTIONS(725), + [sym_hex_integer_literal] = ACTIONS(725), + [sym_octal_integer_literal] = ACTIONS(725), + [sym_binary_integer_literal] = ACTIONS(723), + [sym_decimal_floating_point_literal] = ACTIONS(723), + [sym_hex_floating_point_literal] = ACTIONS(725), + [sym_true] = ACTIONS(725), + [sym_false] = ACTIONS(725), + [sym_character_literal] = ACTIONS(723), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(723), + [sym_null_literal] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(723), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_final] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_PLUS_PLUS] = ACTIONS(723), + [anon_sym_DASH_DASH] = ACTIONS(723), + [anon_sym_new] = ACTIONS(725), + [anon_sym_class] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(723), + [anon_sym_case] = ACTIONS(725), + [anon_sym_default] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_assert] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_yield] = ACTIONS(725), + [anon_sym_synchronized] = ACTIONS(725), + [anon_sym_throw] = ACTIONS(725), + [anon_sym_try] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_else] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_AT] = ACTIONS(725), + [anon_sym_open] = ACTIONS(725), + [anon_sym_module] = ACTIONS(725), + [anon_sym_static] = ACTIONS(725), + [anon_sym_package] = ACTIONS(725), + [anon_sym_import] = ACTIONS(725), + [anon_sym_enum] = ACTIONS(725), + [anon_sym_public] = ACTIONS(725), + [anon_sym_protected] = ACTIONS(725), + [anon_sym_private] = ACTIONS(725), + [anon_sym_abstract] = ACTIONS(725), + [anon_sym_strictfp] = ACTIONS(725), + [anon_sym_native] = ACTIONS(725), + [anon_sym_transient] = ACTIONS(725), + [anon_sym_volatile] = ACTIONS(725), + [anon_sym_sealed] = ACTIONS(725), + [anon_sym_non_DASHsealed] = ACTIONS(723), + [anon_sym_record] = ACTIONS(725), + [anon_sym_ATinterface] = ACTIONS(723), + [anon_sym_interface] = ACTIONS(725), + [anon_sym_byte] = ACTIONS(725), + [anon_sym_short] = ACTIONS(725), + [anon_sym_int] = ACTIONS(725), + [anon_sym_long] = ACTIONS(725), + [anon_sym_char] = ACTIONS(725), + [anon_sym_float] = ACTIONS(725), + [anon_sym_double] = ACTIONS(725), + [sym_boolean_type] = ACTIONS(725), + [sym_void_type] = ACTIONS(725), + [sym_this] = ACTIONS(725), + [sym_super] = ACTIONS(725), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [189] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(750), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(194)] = { + [ts_builtin_sym_end] = ACTIONS(727), + [sym_identifier] = ACTIONS(729), + [sym_decimal_integer_literal] = ACTIONS(729), + [sym_hex_integer_literal] = ACTIONS(729), + [sym_octal_integer_literal] = ACTIONS(729), + [sym_binary_integer_literal] = ACTIONS(727), + [sym_decimal_floating_point_literal] = ACTIONS(727), + [sym_hex_floating_point_literal] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_character_literal] = ACTIONS(727), + [anon_sym_DQUOTE] = ACTIONS(729), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(727), + [sym_null_literal] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_final] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_PLUS_PLUS] = ACTIONS(727), + [anon_sym_DASH_DASH] = ACTIONS(727), + [anon_sym_new] = ACTIONS(729), + [anon_sym_class] = ACTIONS(729), + [anon_sym_switch] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(727), + [anon_sym_case] = ACTIONS(729), + [anon_sym_default] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_assert] = ACTIONS(729), + [anon_sym_do] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_yield] = ACTIONS(729), + [anon_sym_synchronized] = ACTIONS(729), + [anon_sym_throw] = ACTIONS(729), + [anon_sym_try] = ACTIONS(729), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(729), + [anon_sym_for] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(729), + [anon_sym_open] = ACTIONS(729), + [anon_sym_module] = ACTIONS(729), + [anon_sym_static] = ACTIONS(729), + [anon_sym_package] = ACTIONS(729), + [anon_sym_import] = ACTIONS(729), + [anon_sym_enum] = ACTIONS(729), + [anon_sym_public] = ACTIONS(729), + [anon_sym_protected] = ACTIONS(729), + [anon_sym_private] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(729), + [anon_sym_strictfp] = ACTIONS(729), + [anon_sym_native] = ACTIONS(729), + [anon_sym_transient] = ACTIONS(729), + [anon_sym_volatile] = ACTIONS(729), + [anon_sym_sealed] = ACTIONS(729), + [anon_sym_non_DASHsealed] = ACTIONS(727), + [anon_sym_record] = ACTIONS(729), + [anon_sym_ATinterface] = ACTIONS(727), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_byte] = ACTIONS(729), + [anon_sym_short] = ACTIONS(729), + [anon_sym_int] = ACTIONS(729), + [anon_sym_long] = ACTIONS(729), + [anon_sym_char] = ACTIONS(729), + [anon_sym_float] = ACTIONS(729), + [anon_sym_double] = ACTIONS(729), + [sym_boolean_type] = ACTIONS(729), + [sym_void_type] = ACTIONS(729), + [sym_this] = ACTIONS(729), + [sym_super] = ACTIONS(729), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [190] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(661), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_RPAREN] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(195)] = { + [ts_builtin_sym_end] = ACTIONS(731), + [sym_identifier] = ACTIONS(733), + [sym_decimal_integer_literal] = ACTIONS(733), + [sym_hex_integer_literal] = ACTIONS(733), + [sym_octal_integer_literal] = ACTIONS(733), + [sym_binary_integer_literal] = ACTIONS(731), + [sym_decimal_floating_point_literal] = ACTIONS(731), + [sym_hex_floating_point_literal] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_character_literal] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(731), + [sym_null_literal] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_LT] = ACTIONS(731), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_final] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_TILDE] = ACTIONS(731), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_DASH_DASH] = ACTIONS(731), + [anon_sym_new] = ACTIONS(733), + [anon_sym_class] = ACTIONS(733), + [anon_sym_switch] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_case] = ACTIONS(733), + [anon_sym_default] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_assert] = ACTIONS(733), + [anon_sym_do] = ACTIONS(733), + [anon_sym_while] = ACTIONS(733), + [anon_sym_break] = ACTIONS(733), + [anon_sym_continue] = ACTIONS(733), + [anon_sym_return] = ACTIONS(733), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_synchronized] = ACTIONS(733), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_try] = ACTIONS(733), + [anon_sym_if] = ACTIONS(733), + [anon_sym_else] = ACTIONS(733), + [anon_sym_for] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(733), + [anon_sym_open] = ACTIONS(733), + [anon_sym_module] = ACTIONS(733), + [anon_sym_static] = ACTIONS(733), + [anon_sym_package] = ACTIONS(733), + [anon_sym_import] = ACTIONS(733), + [anon_sym_enum] = ACTIONS(733), + [anon_sym_public] = ACTIONS(733), + [anon_sym_protected] = ACTIONS(733), + [anon_sym_private] = ACTIONS(733), + [anon_sym_abstract] = ACTIONS(733), + [anon_sym_strictfp] = ACTIONS(733), + [anon_sym_native] = ACTIONS(733), + [anon_sym_transient] = ACTIONS(733), + [anon_sym_volatile] = ACTIONS(733), + [anon_sym_sealed] = ACTIONS(733), + [anon_sym_non_DASHsealed] = ACTIONS(731), + [anon_sym_record] = ACTIONS(733), + [anon_sym_ATinterface] = ACTIONS(731), + [anon_sym_interface] = ACTIONS(733), + [anon_sym_byte] = ACTIONS(733), + [anon_sym_short] = ACTIONS(733), + [anon_sym_int] = ACTIONS(733), + [anon_sym_long] = ACTIONS(733), + [anon_sym_char] = ACTIONS(733), + [anon_sym_float] = ACTIONS(733), + [anon_sym_double] = ACTIONS(733), + [sym_boolean_type] = ACTIONS(733), + [sym_void_type] = ACTIONS(733), + [sym_this] = ACTIONS(733), + [sym_super] = ACTIONS(733), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [191] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(632), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [192] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(640), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [193] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(641), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [194] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(644), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(196)] = { + [ts_builtin_sym_end] = ACTIONS(735), + [sym_identifier] = ACTIONS(737), + [sym_decimal_integer_literal] = ACTIONS(737), + [sym_hex_integer_literal] = ACTIONS(737), + [sym_octal_integer_literal] = ACTIONS(737), + [sym_binary_integer_literal] = ACTIONS(735), + [sym_decimal_floating_point_literal] = ACTIONS(735), + [sym_hex_floating_point_literal] = ACTIONS(737), + [sym_true] = ACTIONS(737), + [sym_false] = ACTIONS(737), + [sym_character_literal] = ACTIONS(735), + [anon_sym_DQUOTE] = ACTIONS(737), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(735), + [sym_null_literal] = ACTIONS(737), + [anon_sym_LPAREN] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_final] = ACTIONS(737), + [anon_sym_BANG] = ACTIONS(735), + [anon_sym_TILDE] = ACTIONS(735), + [anon_sym_PLUS_PLUS] = ACTIONS(735), + [anon_sym_DASH_DASH] = ACTIONS(735), + [anon_sym_new] = ACTIONS(737), + [anon_sym_class] = ACTIONS(737), + [anon_sym_switch] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_case] = ACTIONS(737), + [anon_sym_default] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_assert] = ACTIONS(737), + [anon_sym_do] = ACTIONS(737), + [anon_sym_while] = ACTIONS(737), + [anon_sym_break] = ACTIONS(737), + [anon_sym_continue] = ACTIONS(737), + [anon_sym_return] = ACTIONS(737), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_synchronized] = ACTIONS(737), + [anon_sym_throw] = ACTIONS(737), + [anon_sym_try] = ACTIONS(737), + [anon_sym_if] = ACTIONS(737), + [anon_sym_else] = ACTIONS(737), + [anon_sym_for] = ACTIONS(737), + [anon_sym_AT] = ACTIONS(737), + [anon_sym_open] = ACTIONS(737), + [anon_sym_module] = ACTIONS(737), + [anon_sym_static] = ACTIONS(737), + [anon_sym_package] = ACTIONS(737), + [anon_sym_import] = ACTIONS(737), + [anon_sym_enum] = ACTIONS(737), + [anon_sym_public] = ACTIONS(737), + [anon_sym_protected] = ACTIONS(737), + [anon_sym_private] = ACTIONS(737), + [anon_sym_abstract] = ACTIONS(737), + [anon_sym_strictfp] = ACTIONS(737), + [anon_sym_native] = ACTIONS(737), + [anon_sym_transient] = ACTIONS(737), + [anon_sym_volatile] = ACTIONS(737), + [anon_sym_sealed] = ACTIONS(737), + [anon_sym_non_DASHsealed] = ACTIONS(735), + [anon_sym_record] = ACTIONS(737), + [anon_sym_ATinterface] = ACTIONS(735), + [anon_sym_interface] = ACTIONS(737), + [anon_sym_byte] = ACTIONS(737), + [anon_sym_short] = ACTIONS(737), + [anon_sym_int] = ACTIONS(737), + [anon_sym_long] = ACTIONS(737), + [anon_sym_char] = ACTIONS(737), + [anon_sym_float] = ACTIONS(737), + [anon_sym_double] = ACTIONS(737), + [sym_boolean_type] = ACTIONS(737), + [sym_void_type] = ACTIONS(737), + [sym_this] = ACTIONS(737), + [sym_super] = ACTIONS(737), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [195] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(646), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(197)] = { + [ts_builtin_sym_end] = ACTIONS(739), + [sym_identifier] = ACTIONS(741), + [sym_decimal_integer_literal] = ACTIONS(741), + [sym_hex_integer_literal] = ACTIONS(741), + [sym_octal_integer_literal] = ACTIONS(741), + [sym_binary_integer_literal] = ACTIONS(739), + [sym_decimal_floating_point_literal] = ACTIONS(739), + [sym_hex_floating_point_literal] = ACTIONS(741), + [sym_true] = ACTIONS(741), + [sym_false] = ACTIONS(741), + [sym_character_literal] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [sym_null_literal] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_PLUS] = ACTIONS(741), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_final] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_new] = ACTIONS(741), + [anon_sym_class] = ACTIONS(741), + [anon_sym_switch] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(739), + [anon_sym_case] = ACTIONS(741), + [anon_sym_default] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_assert] = ACTIONS(741), + [anon_sym_do] = ACTIONS(741), + [anon_sym_while] = ACTIONS(741), + [anon_sym_break] = ACTIONS(741), + [anon_sym_continue] = ACTIONS(741), + [anon_sym_return] = ACTIONS(741), + [anon_sym_yield] = ACTIONS(741), + [anon_sym_synchronized] = ACTIONS(741), + [anon_sym_throw] = ACTIONS(741), + [anon_sym_try] = ACTIONS(741), + [anon_sym_if] = ACTIONS(741), + [anon_sym_else] = ACTIONS(741), + [anon_sym_for] = ACTIONS(741), + [anon_sym_AT] = ACTIONS(741), + [anon_sym_open] = ACTIONS(741), + [anon_sym_module] = ACTIONS(741), + [anon_sym_static] = ACTIONS(741), + [anon_sym_package] = ACTIONS(741), + [anon_sym_import] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(741), + [anon_sym_public] = ACTIONS(741), + [anon_sym_protected] = ACTIONS(741), + [anon_sym_private] = ACTIONS(741), + [anon_sym_abstract] = ACTIONS(741), + [anon_sym_strictfp] = ACTIONS(741), + [anon_sym_native] = ACTIONS(741), + [anon_sym_transient] = ACTIONS(741), + [anon_sym_volatile] = ACTIONS(741), + [anon_sym_sealed] = ACTIONS(741), + [anon_sym_non_DASHsealed] = ACTIONS(739), + [anon_sym_record] = ACTIONS(741), + [anon_sym_ATinterface] = ACTIONS(739), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_byte] = ACTIONS(741), + [anon_sym_short] = ACTIONS(741), + [anon_sym_int] = ACTIONS(741), + [anon_sym_long] = ACTIONS(741), + [anon_sym_char] = ACTIONS(741), + [anon_sym_float] = ACTIONS(741), + [anon_sym_double] = ACTIONS(741), + [sym_boolean_type] = ACTIONS(741), + [sym_void_type] = ACTIONS(741), + [sym_this] = ACTIONS(741), + [sym_super] = ACTIONS(741), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [196] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(584), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(198)] = { + [ts_builtin_sym_end] = ACTIONS(743), + [sym_identifier] = ACTIONS(745), + [sym_decimal_integer_literal] = ACTIONS(745), + [sym_hex_integer_literal] = ACTIONS(745), + [sym_octal_integer_literal] = ACTIONS(745), + [sym_binary_integer_literal] = ACTIONS(743), + [sym_decimal_floating_point_literal] = ACTIONS(743), + [sym_hex_floating_point_literal] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_character_literal] = ACTIONS(743), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(743), + [anon_sym_RBRACE] = ACTIONS(743), + [sym_null_literal] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(743), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_final] = ACTIONS(745), + [anon_sym_BANG] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(743), + [anon_sym_DASH_DASH] = ACTIONS(743), + [anon_sym_new] = ACTIONS(745), + [anon_sym_class] = ACTIONS(745), + [anon_sym_switch] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(743), + [anon_sym_case] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_assert] = ACTIONS(745), + [anon_sym_do] = ACTIONS(745), + [anon_sym_while] = ACTIONS(745), + [anon_sym_break] = ACTIONS(745), + [anon_sym_continue] = ACTIONS(745), + [anon_sym_return] = ACTIONS(745), + [anon_sym_yield] = ACTIONS(745), + [anon_sym_synchronized] = ACTIONS(745), + [anon_sym_throw] = ACTIONS(745), + [anon_sym_try] = ACTIONS(745), + [anon_sym_if] = ACTIONS(745), + [anon_sym_else] = ACTIONS(745), + [anon_sym_for] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_open] = ACTIONS(745), + [anon_sym_module] = ACTIONS(745), + [anon_sym_static] = ACTIONS(745), + [anon_sym_package] = ACTIONS(745), + [anon_sym_import] = ACTIONS(745), + [anon_sym_enum] = ACTIONS(745), + [anon_sym_public] = ACTIONS(745), + [anon_sym_protected] = ACTIONS(745), + [anon_sym_private] = ACTIONS(745), + [anon_sym_abstract] = ACTIONS(745), + [anon_sym_strictfp] = ACTIONS(745), + [anon_sym_native] = ACTIONS(745), + [anon_sym_transient] = ACTIONS(745), + [anon_sym_volatile] = ACTIONS(745), + [anon_sym_sealed] = ACTIONS(745), + [anon_sym_non_DASHsealed] = ACTIONS(743), + [anon_sym_record] = ACTIONS(745), + [anon_sym_ATinterface] = ACTIONS(743), + [anon_sym_interface] = ACTIONS(745), + [anon_sym_byte] = ACTIONS(745), + [anon_sym_short] = ACTIONS(745), + [anon_sym_int] = ACTIONS(745), + [anon_sym_long] = ACTIONS(745), + [anon_sym_char] = ACTIONS(745), + [anon_sym_float] = ACTIONS(745), + [anon_sym_double] = ACTIONS(745), + [sym_boolean_type] = ACTIONS(745), + [sym_void_type] = ACTIONS(745), + [sym_this] = ACTIONS(745), + [sym_super] = ACTIONS(745), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [197] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(647), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(199)] = { + [ts_builtin_sym_end] = ACTIONS(747), + [sym_identifier] = ACTIONS(749), + [sym_decimal_integer_literal] = ACTIONS(749), + [sym_hex_integer_literal] = ACTIONS(749), + [sym_octal_integer_literal] = ACTIONS(749), + [sym_binary_integer_literal] = ACTIONS(747), + [sym_decimal_floating_point_literal] = ACTIONS(747), + [sym_hex_floating_point_literal] = ACTIONS(749), + [sym_true] = ACTIONS(749), + [sym_false] = ACTIONS(749), + [sym_character_literal] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [sym_null_literal] = ACTIONS(749), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_final] = ACTIONS(749), + [anon_sym_BANG] = ACTIONS(747), + [anon_sym_TILDE] = ACTIONS(747), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [anon_sym_new] = ACTIONS(749), + [anon_sym_class] = ACTIONS(749), + [anon_sym_switch] = ACTIONS(749), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_case] = ACTIONS(749), + [anon_sym_default] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_assert] = ACTIONS(749), + [anon_sym_do] = ACTIONS(749), + [anon_sym_while] = ACTIONS(749), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(749), + [anon_sym_return] = ACTIONS(749), + [anon_sym_yield] = ACTIONS(749), + [anon_sym_synchronized] = ACTIONS(749), + [anon_sym_throw] = ACTIONS(749), + [anon_sym_try] = ACTIONS(749), + [anon_sym_if] = ACTIONS(749), + [anon_sym_else] = ACTIONS(749), + [anon_sym_for] = ACTIONS(749), + [anon_sym_AT] = ACTIONS(749), + [anon_sym_open] = ACTIONS(749), + [anon_sym_module] = ACTIONS(749), + [anon_sym_static] = ACTIONS(749), + [anon_sym_package] = ACTIONS(749), + [anon_sym_import] = ACTIONS(749), + [anon_sym_enum] = ACTIONS(749), + [anon_sym_public] = ACTIONS(749), + [anon_sym_protected] = ACTIONS(749), + [anon_sym_private] = ACTIONS(749), + [anon_sym_abstract] = ACTIONS(749), + [anon_sym_strictfp] = ACTIONS(749), + [anon_sym_native] = ACTIONS(749), + [anon_sym_transient] = ACTIONS(749), + [anon_sym_volatile] = ACTIONS(749), + [anon_sym_sealed] = ACTIONS(749), + [anon_sym_non_DASHsealed] = ACTIONS(747), + [anon_sym_record] = ACTIONS(749), + [anon_sym_ATinterface] = ACTIONS(747), + [anon_sym_interface] = ACTIONS(749), + [anon_sym_byte] = ACTIONS(749), + [anon_sym_short] = ACTIONS(749), + [anon_sym_int] = ACTIONS(749), + [anon_sym_long] = ACTIONS(749), + [anon_sym_char] = ACTIONS(749), + [anon_sym_float] = ACTIONS(749), + [anon_sym_double] = ACTIONS(749), + [sym_boolean_type] = ACTIONS(749), + [sym_void_type] = ACTIONS(749), + [sym_this] = ACTIONS(749), + [sym_super] = ACTIONS(749), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [198] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(648), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(200)] = { + [ts_builtin_sym_end] = ACTIONS(751), + [sym_identifier] = ACTIONS(753), + [sym_decimal_integer_literal] = ACTIONS(753), + [sym_hex_integer_literal] = ACTIONS(753), + [sym_octal_integer_literal] = ACTIONS(753), + [sym_binary_integer_literal] = ACTIONS(751), + [sym_decimal_floating_point_literal] = ACTIONS(751), + [sym_hex_floating_point_literal] = ACTIONS(753), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_character_literal] = ACTIONS(751), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(751), + [anon_sym_RBRACE] = ACTIONS(751), + [sym_null_literal] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(751), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_final] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(751), + [anon_sym_TILDE] = ACTIONS(751), + [anon_sym_PLUS_PLUS] = ACTIONS(751), + [anon_sym_DASH_DASH] = ACTIONS(751), + [anon_sym_new] = ACTIONS(753), + [anon_sym_class] = ACTIONS(753), + [anon_sym_switch] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(751), + [anon_sym_case] = ACTIONS(753), + [anon_sym_default] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_assert] = ACTIONS(753), + [anon_sym_do] = ACTIONS(753), + [anon_sym_while] = ACTIONS(753), + [anon_sym_break] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(753), + [anon_sym_return] = ACTIONS(753), + [anon_sym_yield] = ACTIONS(753), + [anon_sym_synchronized] = ACTIONS(753), + [anon_sym_throw] = ACTIONS(753), + [anon_sym_try] = ACTIONS(753), + [anon_sym_if] = ACTIONS(753), + [anon_sym_else] = ACTIONS(753), + [anon_sym_for] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(753), + [anon_sym_open] = ACTIONS(753), + [anon_sym_module] = ACTIONS(753), + [anon_sym_static] = ACTIONS(753), + [anon_sym_package] = ACTIONS(753), + [anon_sym_import] = ACTIONS(753), + [anon_sym_enum] = ACTIONS(753), + [anon_sym_public] = ACTIONS(753), + [anon_sym_protected] = ACTIONS(753), + [anon_sym_private] = ACTIONS(753), + [anon_sym_abstract] = ACTIONS(753), + [anon_sym_strictfp] = ACTIONS(753), + [anon_sym_native] = ACTIONS(753), + [anon_sym_transient] = ACTIONS(753), + [anon_sym_volatile] = ACTIONS(753), + [anon_sym_sealed] = ACTIONS(753), + [anon_sym_non_DASHsealed] = ACTIONS(751), + [anon_sym_record] = ACTIONS(753), + [anon_sym_ATinterface] = ACTIONS(751), + [anon_sym_interface] = ACTIONS(753), + [anon_sym_byte] = ACTIONS(753), + [anon_sym_short] = ACTIONS(753), + [anon_sym_int] = ACTIONS(753), + [anon_sym_long] = ACTIONS(753), + [anon_sym_char] = ACTIONS(753), + [anon_sym_float] = ACTIONS(753), + [anon_sym_double] = ACTIONS(753), + [sym_boolean_type] = ACTIONS(753), + [sym_void_type] = ACTIONS(753), + [sym_this] = ACTIONS(753), + [sym_super] = ACTIONS(753), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [199] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(649), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [200] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(599), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(600), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(557), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [201] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(743), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [202] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(633), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(201)] = { + [ts_builtin_sym_end] = ACTIONS(755), + [sym_identifier] = ACTIONS(757), + [sym_decimal_integer_literal] = ACTIONS(757), + [sym_hex_integer_literal] = ACTIONS(757), + [sym_octal_integer_literal] = ACTIONS(757), + [sym_binary_integer_literal] = ACTIONS(755), + [sym_decimal_floating_point_literal] = ACTIONS(755), + [sym_hex_floating_point_literal] = ACTIONS(757), + [sym_true] = ACTIONS(757), + [sym_false] = ACTIONS(757), + [sym_character_literal] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [sym_null_literal] = ACTIONS(757), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_final] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_new] = ACTIONS(757), + [anon_sym_class] = ACTIONS(757), + [anon_sym_switch] = ACTIONS(757), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_case] = ACTIONS(757), + [anon_sym_default] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_assert] = ACTIONS(757), + [anon_sym_do] = ACTIONS(757), + [anon_sym_while] = ACTIONS(757), + [anon_sym_break] = ACTIONS(757), + [anon_sym_continue] = ACTIONS(757), + [anon_sym_return] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(757), + [anon_sym_synchronized] = ACTIONS(757), + [anon_sym_throw] = ACTIONS(757), + [anon_sym_try] = ACTIONS(757), + [anon_sym_if] = ACTIONS(757), + [anon_sym_else] = ACTIONS(757), + [anon_sym_for] = ACTIONS(757), + [anon_sym_AT] = ACTIONS(757), + [anon_sym_open] = ACTIONS(757), + [anon_sym_module] = ACTIONS(757), + [anon_sym_static] = ACTIONS(757), + [anon_sym_package] = ACTIONS(757), + [anon_sym_import] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(757), + [anon_sym_public] = ACTIONS(757), + [anon_sym_protected] = ACTIONS(757), + [anon_sym_private] = ACTIONS(757), + [anon_sym_abstract] = ACTIONS(757), + [anon_sym_strictfp] = ACTIONS(757), + [anon_sym_native] = ACTIONS(757), + [anon_sym_transient] = ACTIONS(757), + [anon_sym_volatile] = ACTIONS(757), + [anon_sym_sealed] = ACTIONS(757), + [anon_sym_non_DASHsealed] = ACTIONS(755), + [anon_sym_record] = ACTIONS(757), + [anon_sym_ATinterface] = ACTIONS(755), + [anon_sym_interface] = ACTIONS(757), + [anon_sym_byte] = ACTIONS(757), + [anon_sym_short] = ACTIONS(757), + [anon_sym_int] = ACTIONS(757), + [anon_sym_long] = ACTIONS(757), + [anon_sym_char] = ACTIONS(757), + [anon_sym_float] = ACTIONS(757), + [anon_sym_double] = ACTIONS(757), + [sym_boolean_type] = ACTIONS(757), + [sym_void_type] = ACTIONS(757), + [sym_this] = ACTIONS(757), + [sym_super] = ACTIONS(757), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(720), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(202)] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(761), + [sym_decimal_integer_literal] = ACTIONS(761), + [sym_hex_integer_literal] = ACTIONS(761), + [sym_octal_integer_literal] = ACTIONS(761), + [sym_binary_integer_literal] = ACTIONS(759), + [sym_decimal_floating_point_literal] = ACTIONS(759), + [sym_hex_floating_point_literal] = ACTIONS(761), + [sym_true] = ACTIONS(761), + [sym_false] = ACTIONS(761), + [sym_character_literal] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [sym_null_literal] = ACTIONS(761), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_final] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_PLUS_PLUS] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(759), + [anon_sym_new] = ACTIONS(761), + [anon_sym_class] = ACTIONS(761), + [anon_sym_switch] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_case] = ACTIONS(761), + [anon_sym_default] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_assert] = ACTIONS(761), + [anon_sym_do] = ACTIONS(761), + [anon_sym_while] = ACTIONS(761), + [anon_sym_break] = ACTIONS(761), + [anon_sym_continue] = ACTIONS(761), + [anon_sym_return] = ACTIONS(761), + [anon_sym_yield] = ACTIONS(761), + [anon_sym_synchronized] = ACTIONS(761), + [anon_sym_throw] = ACTIONS(761), + [anon_sym_try] = ACTIONS(761), + [anon_sym_if] = ACTIONS(761), + [anon_sym_else] = ACTIONS(761), + [anon_sym_for] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(761), + [anon_sym_open] = ACTIONS(761), + [anon_sym_module] = ACTIONS(761), + [anon_sym_static] = ACTIONS(761), + [anon_sym_package] = ACTIONS(761), + [anon_sym_import] = ACTIONS(761), + [anon_sym_enum] = ACTIONS(761), + [anon_sym_public] = ACTIONS(761), + [anon_sym_protected] = ACTIONS(761), + [anon_sym_private] = ACTIONS(761), + [anon_sym_abstract] = ACTIONS(761), + [anon_sym_strictfp] = ACTIONS(761), + [anon_sym_native] = ACTIONS(761), + [anon_sym_transient] = ACTIONS(761), + [anon_sym_volatile] = ACTIONS(761), + [anon_sym_sealed] = ACTIONS(761), + [anon_sym_non_DASHsealed] = ACTIONS(759), + [anon_sym_record] = ACTIONS(761), + [anon_sym_ATinterface] = ACTIONS(759), + [anon_sym_interface] = ACTIONS(761), + [anon_sym_byte] = ACTIONS(761), + [anon_sym_short] = ACTIONS(761), + [anon_sym_int] = ACTIONS(761), + [anon_sym_long] = ACTIONS(761), + [anon_sym_char] = ACTIONS(761), + [anon_sym_float] = ACTIONS(761), + [anon_sym_double] = ACTIONS(761), + [sym_boolean_type] = ACTIONS(761), + [sym_void_type] = ACTIONS(761), + [sym_this] = ACTIONS(761), + [sym_super] = ACTIONS(761), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [204] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(598), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(203)] = { + [ts_builtin_sym_end] = ACTIONS(763), + [sym_identifier] = ACTIONS(765), + [sym_decimal_integer_literal] = ACTIONS(765), + [sym_hex_integer_literal] = ACTIONS(765), + [sym_octal_integer_literal] = ACTIONS(765), + [sym_binary_integer_literal] = ACTIONS(763), + [sym_decimal_floating_point_literal] = ACTIONS(763), + [sym_hex_floating_point_literal] = ACTIONS(765), + [sym_true] = ACTIONS(765), + [sym_false] = ACTIONS(765), + [sym_character_literal] = ACTIONS(763), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(763), + [anon_sym_RBRACE] = ACTIONS(763), + [sym_null_literal] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_final] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_TILDE] = ACTIONS(763), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_new] = ACTIONS(765), + [anon_sym_class] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_case] = ACTIONS(765), + [anon_sym_default] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_assert] = ACTIONS(765), + [anon_sym_do] = ACTIONS(765), + [anon_sym_while] = ACTIONS(765), + [anon_sym_break] = ACTIONS(765), + [anon_sym_continue] = ACTIONS(765), + [anon_sym_return] = ACTIONS(765), + [anon_sym_yield] = ACTIONS(765), + [anon_sym_synchronized] = ACTIONS(765), + [anon_sym_throw] = ACTIONS(765), + [anon_sym_try] = ACTIONS(765), + [anon_sym_if] = ACTIONS(765), + [anon_sym_else] = ACTIONS(765), + [anon_sym_for] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_open] = ACTIONS(765), + [anon_sym_module] = ACTIONS(765), + [anon_sym_static] = ACTIONS(765), + [anon_sym_package] = ACTIONS(765), + [anon_sym_import] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(765), + [anon_sym_public] = ACTIONS(765), + [anon_sym_protected] = ACTIONS(765), + [anon_sym_private] = ACTIONS(765), + [anon_sym_abstract] = ACTIONS(765), + [anon_sym_strictfp] = ACTIONS(765), + [anon_sym_native] = ACTIONS(765), + [anon_sym_transient] = ACTIONS(765), + [anon_sym_volatile] = ACTIONS(765), + [anon_sym_sealed] = ACTIONS(765), + [anon_sym_non_DASHsealed] = ACTIONS(763), + [anon_sym_record] = ACTIONS(765), + [anon_sym_ATinterface] = ACTIONS(763), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_byte] = ACTIONS(765), + [anon_sym_short] = ACTIONS(765), + [anon_sym_int] = ACTIONS(765), + [anon_sym_long] = ACTIONS(765), + [anon_sym_char] = ACTIONS(765), + [anon_sym_float] = ACTIONS(765), + [anon_sym_double] = ACTIONS(765), + [sym_boolean_type] = ACTIONS(765), + [sym_void_type] = ACTIONS(765), + [sym_this] = ACTIONS(765), + [sym_super] = ACTIONS(765), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [205] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(601), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(204)] = { + [ts_builtin_sym_end] = ACTIONS(767), + [sym_identifier] = ACTIONS(769), + [sym_decimal_integer_literal] = ACTIONS(769), + [sym_hex_integer_literal] = ACTIONS(769), + [sym_octal_integer_literal] = ACTIONS(769), + [sym_binary_integer_literal] = ACTIONS(767), + [sym_decimal_floating_point_literal] = ACTIONS(767), + [sym_hex_floating_point_literal] = ACTIONS(769), + [sym_true] = ACTIONS(769), + [sym_false] = ACTIONS(769), + [sym_character_literal] = ACTIONS(767), + [anon_sym_DQUOTE] = ACTIONS(769), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), + [anon_sym_RBRACE] = ACTIONS(767), + [sym_null_literal] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_final] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_PLUS_PLUS] = ACTIONS(767), + [anon_sym_DASH_DASH] = ACTIONS(767), + [anon_sym_new] = ACTIONS(769), + [anon_sym_class] = ACTIONS(769), + [anon_sym_switch] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_case] = ACTIONS(769), + [anon_sym_default] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(767), + [anon_sym_assert] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_break] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(769), + [anon_sym_synchronized] = ACTIONS(769), + [anon_sym_throw] = ACTIONS(769), + [anon_sym_try] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_else] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [anon_sym_open] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_static] = ACTIONS(769), + [anon_sym_package] = ACTIONS(769), + [anon_sym_import] = ACTIONS(769), + [anon_sym_enum] = ACTIONS(769), + [anon_sym_public] = ACTIONS(769), + [anon_sym_protected] = ACTIONS(769), + [anon_sym_private] = ACTIONS(769), + [anon_sym_abstract] = ACTIONS(769), + [anon_sym_strictfp] = ACTIONS(769), + [anon_sym_native] = ACTIONS(769), + [anon_sym_transient] = ACTIONS(769), + [anon_sym_volatile] = ACTIONS(769), + [anon_sym_sealed] = ACTIONS(769), + [anon_sym_non_DASHsealed] = ACTIONS(767), + [anon_sym_record] = ACTIONS(769), + [anon_sym_ATinterface] = ACTIONS(767), + [anon_sym_interface] = ACTIONS(769), + [anon_sym_byte] = ACTIONS(769), + [anon_sym_short] = ACTIONS(769), + [anon_sym_int] = ACTIONS(769), + [anon_sym_long] = ACTIONS(769), + [anon_sym_char] = ACTIONS(769), + [anon_sym_float] = ACTIONS(769), + [anon_sym_double] = ACTIONS(769), + [sym_boolean_type] = ACTIONS(769), + [sym_void_type] = ACTIONS(769), + [sym_this] = ACTIONS(769), + [sym_super] = ACTIONS(769), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [206] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(722), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(205)] = { + [ts_builtin_sym_end] = ACTIONS(771), + [sym_identifier] = ACTIONS(773), + [sym_decimal_integer_literal] = ACTIONS(773), + [sym_hex_integer_literal] = ACTIONS(773), + [sym_octal_integer_literal] = ACTIONS(773), + [sym_binary_integer_literal] = ACTIONS(771), + [sym_decimal_floating_point_literal] = ACTIONS(771), + [sym_hex_floating_point_literal] = ACTIONS(773), + [sym_true] = ACTIONS(773), + [sym_false] = ACTIONS(773), + [sym_character_literal] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [sym_null_literal] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_final] = ACTIONS(773), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_TILDE] = ACTIONS(771), + [anon_sym_PLUS_PLUS] = ACTIONS(771), + [anon_sym_DASH_DASH] = ACTIONS(771), + [anon_sym_new] = ACTIONS(773), + [anon_sym_class] = ACTIONS(773), + [anon_sym_switch] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_case] = ACTIONS(773), + [anon_sym_default] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_assert] = ACTIONS(773), + [anon_sym_do] = ACTIONS(773), + [anon_sym_while] = ACTIONS(773), + [anon_sym_break] = ACTIONS(773), + [anon_sym_continue] = ACTIONS(773), + [anon_sym_return] = ACTIONS(773), + [anon_sym_yield] = ACTIONS(773), + [anon_sym_synchronized] = ACTIONS(773), + [anon_sym_throw] = ACTIONS(773), + [anon_sym_try] = ACTIONS(773), + [anon_sym_if] = ACTIONS(773), + [anon_sym_else] = ACTIONS(773), + [anon_sym_for] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(773), + [anon_sym_open] = ACTIONS(773), + [anon_sym_module] = ACTIONS(773), + [anon_sym_static] = ACTIONS(773), + [anon_sym_package] = ACTIONS(773), + [anon_sym_import] = ACTIONS(773), + [anon_sym_enum] = ACTIONS(773), + [anon_sym_public] = ACTIONS(773), + [anon_sym_protected] = ACTIONS(773), + [anon_sym_private] = ACTIONS(773), + [anon_sym_abstract] = ACTIONS(773), + [anon_sym_strictfp] = ACTIONS(773), + [anon_sym_native] = ACTIONS(773), + [anon_sym_transient] = ACTIONS(773), + [anon_sym_volatile] = ACTIONS(773), + [anon_sym_sealed] = ACTIONS(773), + [anon_sym_non_DASHsealed] = ACTIONS(771), + [anon_sym_record] = ACTIONS(773), + [anon_sym_ATinterface] = ACTIONS(771), + [anon_sym_interface] = ACTIONS(773), + [anon_sym_byte] = ACTIONS(773), + [anon_sym_short] = ACTIONS(773), + [anon_sym_int] = ACTIONS(773), + [anon_sym_long] = ACTIONS(773), + [anon_sym_char] = ACTIONS(773), + [anon_sym_float] = ACTIONS(773), + [anon_sym_double] = ACTIONS(773), + [sym_boolean_type] = ACTIONS(773), + [sym_void_type] = ACTIONS(773), + [sym_this] = ACTIONS(773), + [sym_super] = ACTIONS(773), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [207] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(732), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [208] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(725), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [209] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(610), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [210] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(714), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [211] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(601), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [212] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(619), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [213] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(721), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(206)] = { + [ts_builtin_sym_end] = ACTIONS(775), + [sym_identifier] = ACTIONS(777), + [sym_decimal_integer_literal] = ACTIONS(777), + [sym_hex_integer_literal] = ACTIONS(777), + [sym_octal_integer_literal] = ACTIONS(777), + [sym_binary_integer_literal] = ACTIONS(775), + [sym_decimal_floating_point_literal] = ACTIONS(775), + [sym_hex_floating_point_literal] = ACTIONS(777), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_character_literal] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [sym_null_literal] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_final] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_DASH_DASH] = ACTIONS(775), + [anon_sym_new] = ACTIONS(777), + [anon_sym_class] = ACTIONS(777), + [anon_sym_switch] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_case] = ACTIONS(777), + [anon_sym_default] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_assert] = ACTIONS(777), + [anon_sym_do] = ACTIONS(777), + [anon_sym_while] = ACTIONS(777), + [anon_sym_break] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(777), + [anon_sym_return] = ACTIONS(777), + [anon_sym_yield] = ACTIONS(777), + [anon_sym_synchronized] = ACTIONS(777), + [anon_sym_throw] = ACTIONS(777), + [anon_sym_try] = ACTIONS(777), + [anon_sym_if] = ACTIONS(777), + [anon_sym_else] = ACTIONS(777), + [anon_sym_for] = ACTIONS(777), + [anon_sym_AT] = ACTIONS(777), + [anon_sym_open] = ACTIONS(777), + [anon_sym_module] = ACTIONS(777), + [anon_sym_static] = ACTIONS(777), + [anon_sym_package] = ACTIONS(777), + [anon_sym_import] = ACTIONS(777), + [anon_sym_enum] = ACTIONS(777), + [anon_sym_public] = ACTIONS(777), + [anon_sym_protected] = ACTIONS(777), + [anon_sym_private] = ACTIONS(777), + [anon_sym_abstract] = ACTIONS(777), + [anon_sym_strictfp] = ACTIONS(777), + [anon_sym_native] = ACTIONS(777), + [anon_sym_transient] = ACTIONS(777), + [anon_sym_volatile] = ACTIONS(777), + [anon_sym_sealed] = ACTIONS(777), + [anon_sym_non_DASHsealed] = ACTIONS(775), + [anon_sym_record] = ACTIONS(777), + [anon_sym_ATinterface] = ACTIONS(775), + [anon_sym_interface] = ACTIONS(777), + [anon_sym_byte] = ACTIONS(777), + [anon_sym_short] = ACTIONS(777), + [anon_sym_int] = ACTIONS(777), + [anon_sym_long] = ACTIONS(777), + [anon_sym_char] = ACTIONS(777), + [anon_sym_float] = ACTIONS(777), + [anon_sym_double] = ACTIONS(777), + [sym_boolean_type] = ACTIONS(777), + [sym_void_type] = ACTIONS(777), + [sym_this] = ACTIONS(777), + [sym_super] = ACTIONS(777), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [214] = { - [sym_catch_clause] = STATE(214), - [aux_sym_try_statement_repeat1] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(642), - [sym_identifier] = ACTIONS(644), - [sym_decimal_integer_literal] = ACTIONS(644), - [sym_hex_integer_literal] = ACTIONS(644), - [sym_octal_integer_literal] = ACTIONS(644), - [sym_binary_integer_literal] = ACTIONS(642), - [sym_decimal_floating_point_literal] = ACTIONS(642), - [sym_hex_floating_point_literal] = ACTIONS(644), - [sym_true] = ACTIONS(644), - [sym_false] = ACTIONS(644), - [sym_character_literal] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(644), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(642), - [anon_sym_RBRACE] = ACTIONS(642), - [sym_null_literal] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_final] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_TILDE] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(642), - [anon_sym_new] = ACTIONS(644), - [anon_sym_class] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(644), - [anon_sym_default] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_assert] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [anon_sym_break] = ACTIONS(644), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_yield] = ACTIONS(644), - [anon_sym_synchronized] = ACTIONS(644), - [anon_sym_throw] = ACTIONS(644), - [anon_sym_try] = ACTIONS(644), - [anon_sym_catch] = ACTIONS(646), - [anon_sym_finally] = ACTIONS(644), - [anon_sym_if] = ACTIONS(644), - [anon_sym_else] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_open] = ACTIONS(644), - [anon_sym_module] = ACTIONS(644), - [anon_sym_static] = ACTIONS(644), - [anon_sym_with] = ACTIONS(644), - [anon_sym_package] = ACTIONS(644), - [anon_sym_import] = ACTIONS(644), - [anon_sym_enum] = ACTIONS(644), - [anon_sym_public] = ACTIONS(644), - [anon_sym_protected] = ACTIONS(644), - [anon_sym_private] = ACTIONS(644), - [anon_sym_abstract] = ACTIONS(644), - [anon_sym_strictfp] = ACTIONS(644), - [anon_sym_native] = ACTIONS(644), - [anon_sym_transient] = ACTIONS(644), - [anon_sym_volatile] = ACTIONS(644), - [anon_sym_sealed] = ACTIONS(644), - [anon_sym_non_DASHsealed] = ACTIONS(642), - [anon_sym_record] = ACTIONS(644), - [anon_sym_ATinterface] = ACTIONS(642), - [anon_sym_interface] = ACTIONS(644), - [anon_sym_byte] = ACTIONS(644), - [anon_sym_short] = ACTIONS(644), - [anon_sym_int] = ACTIONS(644), - [anon_sym_long] = ACTIONS(644), - [anon_sym_char] = ACTIONS(644), - [anon_sym_float] = ACTIONS(644), - [anon_sym_double] = ACTIONS(644), - [sym_boolean_type] = ACTIONS(644), - [sym_void_type] = ACTIONS(644), - [sym_this] = ACTIONS(644), - [sym_super] = ACTIONS(644), + [STATE(207)] = { + [ts_builtin_sym_end] = ACTIONS(779), + [sym_identifier] = ACTIONS(781), + [sym_decimal_integer_literal] = ACTIONS(781), + [sym_hex_integer_literal] = ACTIONS(781), + [sym_octal_integer_literal] = ACTIONS(781), + [sym_binary_integer_literal] = ACTIONS(779), + [sym_decimal_floating_point_literal] = ACTIONS(779), + [sym_hex_floating_point_literal] = ACTIONS(781), + [sym_true] = ACTIONS(781), + [sym_false] = ACTIONS(781), + [sym_character_literal] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(781), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [sym_null_literal] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_final] = ACTIONS(781), + [anon_sym_BANG] = ACTIONS(779), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [anon_sym_new] = ACTIONS(781), + [anon_sym_class] = ACTIONS(781), + [anon_sym_switch] = ACTIONS(781), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_case] = ACTIONS(781), + [anon_sym_default] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(779), + [anon_sym_assert] = ACTIONS(781), + [anon_sym_do] = ACTIONS(781), + [anon_sym_while] = ACTIONS(781), + [anon_sym_break] = ACTIONS(781), + [anon_sym_continue] = ACTIONS(781), + [anon_sym_return] = ACTIONS(781), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_synchronized] = ACTIONS(781), + [anon_sym_throw] = ACTIONS(781), + [anon_sym_try] = ACTIONS(781), + [anon_sym_if] = ACTIONS(781), + [anon_sym_else] = ACTIONS(781), + [anon_sym_for] = ACTIONS(781), + [anon_sym_AT] = ACTIONS(781), + [anon_sym_open] = ACTIONS(781), + [anon_sym_module] = ACTIONS(781), + [anon_sym_static] = ACTIONS(781), + [anon_sym_package] = ACTIONS(781), + [anon_sym_import] = ACTIONS(781), + [anon_sym_enum] = ACTIONS(781), + [anon_sym_public] = ACTIONS(781), + [anon_sym_protected] = ACTIONS(781), + [anon_sym_private] = ACTIONS(781), + [anon_sym_abstract] = ACTIONS(781), + [anon_sym_strictfp] = ACTIONS(781), + [anon_sym_native] = ACTIONS(781), + [anon_sym_transient] = ACTIONS(781), + [anon_sym_volatile] = ACTIONS(781), + [anon_sym_sealed] = ACTIONS(781), + [anon_sym_non_DASHsealed] = ACTIONS(779), + [anon_sym_record] = ACTIONS(781), + [anon_sym_ATinterface] = ACTIONS(779), + [anon_sym_interface] = ACTIONS(781), + [anon_sym_byte] = ACTIONS(781), + [anon_sym_short] = ACTIONS(781), + [anon_sym_int] = ACTIONS(781), + [anon_sym_long] = ACTIONS(781), + [anon_sym_char] = ACTIONS(781), + [anon_sym_float] = ACTIONS(781), + [anon_sym_double] = ACTIONS(781), + [sym_boolean_type] = ACTIONS(781), + [sym_void_type] = ACTIONS(781), + [sym_this] = ACTIONS(781), + [sym_super] = ACTIONS(781), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [215] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(690), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(208)] = { + [ts_builtin_sym_end] = ACTIONS(783), + [sym_identifier] = ACTIONS(785), + [sym_decimal_integer_literal] = ACTIONS(785), + [sym_hex_integer_literal] = ACTIONS(785), + [sym_octal_integer_literal] = ACTIONS(785), + [sym_binary_integer_literal] = ACTIONS(783), + [sym_decimal_floating_point_literal] = ACTIONS(783), + [sym_hex_floating_point_literal] = ACTIONS(785), + [sym_true] = ACTIONS(785), + [sym_false] = ACTIONS(785), + [sym_character_literal] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(783), + [anon_sym_RBRACE] = ACTIONS(783), + [sym_null_literal] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_final] = ACTIONS(785), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_TILDE] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_new] = ACTIONS(785), + [anon_sym_class] = ACTIONS(785), + [anon_sym_switch] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(783), + [anon_sym_case] = ACTIONS(785), + [anon_sym_default] = ACTIONS(785), + [anon_sym_SEMI] = ACTIONS(783), + [anon_sym_assert] = ACTIONS(785), + [anon_sym_do] = ACTIONS(785), + [anon_sym_while] = ACTIONS(785), + [anon_sym_break] = ACTIONS(785), + [anon_sym_continue] = ACTIONS(785), + [anon_sym_return] = ACTIONS(785), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_synchronized] = ACTIONS(785), + [anon_sym_throw] = ACTIONS(785), + [anon_sym_try] = ACTIONS(785), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(785), + [anon_sym_for] = ACTIONS(785), + [anon_sym_AT] = ACTIONS(785), + [anon_sym_open] = ACTIONS(785), + [anon_sym_module] = ACTIONS(785), + [anon_sym_static] = ACTIONS(785), + [anon_sym_package] = ACTIONS(785), + [anon_sym_import] = ACTIONS(785), + [anon_sym_enum] = ACTIONS(785), + [anon_sym_public] = ACTIONS(785), + [anon_sym_protected] = ACTIONS(785), + [anon_sym_private] = ACTIONS(785), + [anon_sym_abstract] = ACTIONS(785), + [anon_sym_strictfp] = ACTIONS(785), + [anon_sym_native] = ACTIONS(785), + [anon_sym_transient] = ACTIONS(785), + [anon_sym_volatile] = ACTIONS(785), + [anon_sym_sealed] = ACTIONS(785), + [anon_sym_non_DASHsealed] = ACTIONS(783), + [anon_sym_record] = ACTIONS(785), + [anon_sym_ATinterface] = ACTIONS(783), + [anon_sym_interface] = ACTIONS(785), + [anon_sym_byte] = ACTIONS(785), + [anon_sym_short] = ACTIONS(785), + [anon_sym_int] = ACTIONS(785), + [anon_sym_long] = ACTIONS(785), + [anon_sym_char] = ACTIONS(785), + [anon_sym_float] = ACTIONS(785), + [anon_sym_double] = ACTIONS(785), + [sym_boolean_type] = ACTIONS(785), + [sym_void_type] = ACTIONS(785), + [sym_this] = ACTIONS(785), + [sym_super] = ACTIONS(785), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [216] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(631), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), + [STATE(209)] = { + [ts_builtin_sym_end] = ACTIONS(787), + [sym_identifier] = ACTIONS(789), + [sym_decimal_integer_literal] = ACTIONS(789), + [sym_hex_integer_literal] = ACTIONS(789), + [sym_octal_integer_literal] = ACTIONS(789), + [sym_binary_integer_literal] = ACTIONS(787), + [sym_decimal_floating_point_literal] = ACTIONS(787), + [sym_hex_floating_point_literal] = ACTIONS(789), + [sym_true] = ACTIONS(789), + [sym_false] = ACTIONS(789), + [sym_character_literal] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(787), + [sym_null_literal] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_LT] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_final] = ACTIONS(789), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_TILDE] = ACTIONS(787), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_new] = ACTIONS(789), + [anon_sym_class] = ACTIONS(789), + [anon_sym_switch] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_case] = ACTIONS(789), + [anon_sym_default] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_assert] = ACTIONS(789), + [anon_sym_do] = ACTIONS(789), + [anon_sym_while] = ACTIONS(789), + [anon_sym_break] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(789), + [anon_sym_return] = ACTIONS(789), + [anon_sym_yield] = ACTIONS(789), + [anon_sym_synchronized] = ACTIONS(789), + [anon_sym_throw] = ACTIONS(789), + [anon_sym_try] = ACTIONS(789), + [anon_sym_if] = ACTIONS(789), + [anon_sym_else] = ACTIONS(789), + [anon_sym_for] = ACTIONS(789), + [anon_sym_AT] = ACTIONS(789), + [anon_sym_open] = ACTIONS(789), + [anon_sym_module] = ACTIONS(789), + [anon_sym_static] = ACTIONS(789), + [anon_sym_package] = ACTIONS(789), + [anon_sym_import] = ACTIONS(789), + [anon_sym_enum] = ACTIONS(789), + [anon_sym_public] = ACTIONS(789), + [anon_sym_protected] = ACTIONS(789), + [anon_sym_private] = ACTIONS(789), + [anon_sym_abstract] = ACTIONS(789), + [anon_sym_strictfp] = ACTIONS(789), + [anon_sym_native] = ACTIONS(789), + [anon_sym_transient] = ACTIONS(789), + [anon_sym_volatile] = ACTIONS(789), + [anon_sym_sealed] = ACTIONS(789), + [anon_sym_non_DASHsealed] = ACTIONS(787), + [anon_sym_record] = ACTIONS(789), + [anon_sym_ATinterface] = ACTIONS(787), + [anon_sym_interface] = ACTIONS(789), + [anon_sym_byte] = ACTIONS(789), + [anon_sym_short] = ACTIONS(789), + [anon_sym_int] = ACTIONS(789), + [anon_sym_long] = ACTIONS(789), + [anon_sym_char] = ACTIONS(789), + [anon_sym_float] = ACTIONS(789), + [anon_sym_double] = ACTIONS(789), + [sym_boolean_type] = ACTIONS(789), + [sym_void_type] = ACTIONS(789), + [sym_this] = ACTIONS(789), + [sym_super] = ACTIONS(789), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [217] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(700), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [218] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(698), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [219] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(620), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [220] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(699), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [221] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(726), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [222] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(728), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [223] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(751), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [224] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(621), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [225] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(611), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(701), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [227] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(724), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [228] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(617), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [229] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(622), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [230] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(584), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(612), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(615), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [233] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(616), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(711), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(712), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [236] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(614), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(599), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(600), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(557), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [238] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(598), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [239] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(708), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [240] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(733), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [241] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(739), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [242] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(740), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [243] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(634), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [244] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(638), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [245] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(643), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1327), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(455), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(455), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(443), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(540), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(534), - [anon_sym_DASH_DASH] = ACTIONS(534), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [246] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(741), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [247] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_expression] = STATE(719), - [sym_cast_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_binary_expression] = STATE(585), - [sym_instanceof_expression] = STATE(585), - [sym_lambda_expression] = STATE(585), - [sym_inferred_parameters] = STATE(1348), - [sym_ternary_expression] = STATE(585), - [sym_unary_expression] = STATE(585), - [sym_update_expression] = STATE(585), - [sym_primary_expression] = STATE(572), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(439), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(439), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_switch_expression] = STATE(585), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(427), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(418), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(25), - [anon_sym_PLUS_PLUS] = ACTIONS(27), - [anon_sym_DASH_DASH] = ACTIONS(27), - [anon_sym_new] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_with] = ACTIONS(69), - [anon_sym_sealed] = ACTIONS(69), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [248] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_primary_expression] = STATE(1127), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(999), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_resource] = STATE(1291), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(831), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(799), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__reserved_identifier] = STATE(1003), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(649), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_final] = ACTIONS(462), - [anon_sym_new] = ACTIONS(655), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), - [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(454), - [sym_identifier] = ACTIONS(456), - [sym_decimal_integer_literal] = ACTIONS(456), - [sym_hex_integer_literal] = ACTIONS(456), - [sym_octal_integer_literal] = ACTIONS(456), - [sym_binary_integer_literal] = ACTIONS(454), - [sym_decimal_floating_point_literal] = ACTIONS(454), - [sym_hex_floating_point_literal] = ACTIONS(456), - [sym_true] = ACTIONS(456), - [sym_false] = ACTIONS(456), - [sym_character_literal] = ACTIONS(454), - [anon_sym_DQUOTE] = ACTIONS(456), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [sym_null_literal] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_final] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_PLUS_PLUS] = ACTIONS(454), - [anon_sym_DASH_DASH] = ACTIONS(454), - [anon_sym_new] = ACTIONS(456), - [anon_sym_class] = ACTIONS(456), - [anon_sym_switch] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_case] = ACTIONS(456), - [anon_sym_default] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_assert] = ACTIONS(456), - [anon_sym_do] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_synchronized] = ACTIONS(456), - [anon_sym_throw] = ACTIONS(456), - [anon_sym_try] = ACTIONS(456), - [anon_sym_catch] = ACTIONS(456), - [anon_sym_finally] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_else] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_AT] = ACTIONS(456), - [anon_sym_open] = ACTIONS(456), - [anon_sym_module] = ACTIONS(456), - [anon_sym_static] = ACTIONS(456), - [anon_sym_with] = ACTIONS(456), - [anon_sym_package] = ACTIONS(456), - [anon_sym_import] = ACTIONS(456), - [anon_sym_enum] = ACTIONS(456), - [anon_sym_public] = ACTIONS(456), - [anon_sym_protected] = ACTIONS(456), - [anon_sym_private] = ACTIONS(456), - [anon_sym_abstract] = ACTIONS(456), - [anon_sym_strictfp] = ACTIONS(456), - [anon_sym_native] = ACTIONS(456), - [anon_sym_transient] = ACTIONS(456), - [anon_sym_volatile] = ACTIONS(456), - [anon_sym_sealed] = ACTIONS(456), - [anon_sym_non_DASHsealed] = ACTIONS(454), - [anon_sym_record] = ACTIONS(456), - [anon_sym_ATinterface] = ACTIONS(454), - [anon_sym_interface] = ACTIONS(456), - [anon_sym_byte] = ACTIONS(456), - [anon_sym_short] = ACTIONS(456), - [anon_sym_int] = ACTIONS(456), - [anon_sym_long] = ACTIONS(456), - [anon_sym_char] = ACTIONS(456), - [anon_sym_float] = ACTIONS(456), - [anon_sym_double] = ACTIONS(456), - [sym_boolean_type] = ACTIONS(456), - [sym_void_type] = ACTIONS(456), - [sym_this] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), - [sym_decimal_integer_literal] = ACTIONS(436), - [sym_hex_integer_literal] = ACTIONS(436), - [sym_octal_integer_literal] = ACTIONS(436), - [sym_binary_integer_literal] = ACTIONS(434), - [sym_decimal_floating_point_literal] = ACTIONS(434), - [sym_hex_floating_point_literal] = ACTIONS(436), - [sym_true] = ACTIONS(436), - [sym_false] = ACTIONS(436), - [sym_character_literal] = ACTIONS(434), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(434), - [sym_null_literal] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_final] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_TILDE] = ACTIONS(434), - [anon_sym_PLUS_PLUS] = ACTIONS(434), - [anon_sym_DASH_DASH] = ACTIONS(434), - [anon_sym_new] = ACTIONS(436), - [anon_sym_class] = ACTIONS(436), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(434), - [anon_sym_assert] = ACTIONS(436), - [anon_sym_do] = ACTIONS(436), - [anon_sym_while] = ACTIONS(436), - [anon_sym_break] = ACTIONS(436), - [anon_sym_continue] = ACTIONS(436), - [anon_sym_return] = ACTIONS(436), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_synchronized] = ACTIONS(436), - [anon_sym_throw] = ACTIONS(436), - [anon_sym_try] = ACTIONS(436), - [anon_sym_catch] = ACTIONS(436), - [anon_sym_finally] = ACTIONS(436), - [anon_sym_if] = ACTIONS(436), - [anon_sym_else] = ACTIONS(436), - [anon_sym_for] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_open] = ACTIONS(436), - [anon_sym_module] = ACTIONS(436), - [anon_sym_static] = ACTIONS(436), - [anon_sym_with] = ACTIONS(436), - [anon_sym_package] = ACTIONS(436), - [anon_sym_import] = ACTIONS(436), - [anon_sym_enum] = ACTIONS(436), - [anon_sym_public] = ACTIONS(436), - [anon_sym_protected] = ACTIONS(436), - [anon_sym_private] = ACTIONS(436), - [anon_sym_abstract] = ACTIONS(436), - [anon_sym_strictfp] = ACTIONS(436), - [anon_sym_native] = ACTIONS(436), - [anon_sym_transient] = ACTIONS(436), - [anon_sym_volatile] = ACTIONS(436), - [anon_sym_sealed] = ACTIONS(436), - [anon_sym_non_DASHsealed] = ACTIONS(434), - [anon_sym_record] = ACTIONS(436), - [anon_sym_ATinterface] = ACTIONS(434), - [anon_sym_interface] = ACTIONS(436), - [anon_sym_byte] = ACTIONS(436), - [anon_sym_short] = ACTIONS(436), - [anon_sym_int] = ACTIONS(436), - [anon_sym_long] = ACTIONS(436), - [anon_sym_char] = ACTIONS(436), - [anon_sym_float] = ACTIONS(436), - [anon_sym_double] = ACTIONS(436), - [sym_boolean_type] = ACTIONS(436), - [sym_void_type] = ACTIONS(436), - [sym_this] = ACTIONS(436), - [sym_super] = ACTIONS(436), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [251] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_primary_expression] = STATE(1127), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(999), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_resource] = STATE(1291), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(831), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(799), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__reserved_identifier] = STATE(1003), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(649), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_final] = ACTIONS(462), - [anon_sym_new] = ACTIONS(655), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), - [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(659), - [sym_identifier] = ACTIONS(661), - [sym_decimal_integer_literal] = ACTIONS(661), - [sym_hex_integer_literal] = ACTIONS(661), - [sym_octal_integer_literal] = ACTIONS(661), - [sym_binary_integer_literal] = ACTIONS(659), - [sym_decimal_floating_point_literal] = ACTIONS(659), - [sym_hex_floating_point_literal] = ACTIONS(661), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_character_literal] = ACTIONS(659), - [anon_sym_DQUOTE] = ACTIONS(661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(659), - [anon_sym_RBRACE] = ACTIONS(659), - [sym_null_literal] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(659), - [anon_sym_LT] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(661), - [anon_sym_final] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(659), - [anon_sym_DASH_DASH] = ACTIONS(659), - [anon_sym_new] = ACTIONS(661), - [anon_sym_class] = ACTIONS(661), - [anon_sym_switch] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_case] = ACTIONS(661), - [anon_sym_default] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(659), - [anon_sym_assert] = ACTIONS(661), - [anon_sym_do] = ACTIONS(661), - [anon_sym_while] = ACTIONS(661), - [anon_sym_break] = ACTIONS(661), - [anon_sym_continue] = ACTIONS(661), - [anon_sym_return] = ACTIONS(661), - [anon_sym_yield] = ACTIONS(661), - [anon_sym_synchronized] = ACTIONS(661), - [anon_sym_throw] = ACTIONS(661), - [anon_sym_try] = ACTIONS(661), - [anon_sym_catch] = ACTIONS(661), - [anon_sym_finally] = ACTIONS(661), - [anon_sym_if] = ACTIONS(661), - [anon_sym_else] = ACTIONS(661), - [anon_sym_for] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(661), - [anon_sym_open] = ACTIONS(661), - [anon_sym_module] = ACTIONS(661), - [anon_sym_static] = ACTIONS(661), - [anon_sym_with] = ACTIONS(661), - [anon_sym_package] = ACTIONS(661), - [anon_sym_import] = ACTIONS(661), - [anon_sym_enum] = ACTIONS(661), - [anon_sym_public] = ACTIONS(661), - [anon_sym_protected] = ACTIONS(661), - [anon_sym_private] = ACTIONS(661), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_strictfp] = ACTIONS(661), - [anon_sym_native] = ACTIONS(661), - [anon_sym_transient] = ACTIONS(661), - [anon_sym_volatile] = ACTIONS(661), - [anon_sym_sealed] = ACTIONS(661), - [anon_sym_non_DASHsealed] = ACTIONS(659), - [anon_sym_record] = ACTIONS(661), - [anon_sym_ATinterface] = ACTIONS(659), - [anon_sym_interface] = ACTIONS(661), - [anon_sym_byte] = ACTIONS(661), - [anon_sym_short] = ACTIONS(661), - [anon_sym_int] = ACTIONS(661), - [anon_sym_long] = ACTIONS(661), - [anon_sym_char] = ACTIONS(661), - [anon_sym_float] = ACTIONS(661), - [anon_sym_double] = ACTIONS(661), - [sym_boolean_type] = ACTIONS(661), - [sym_void_type] = ACTIONS(661), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(661), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [253] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_primary_expression] = STATE(1127), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(999), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_resource] = STATE(1291), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(831), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(799), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__reserved_identifier] = STATE(1003), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(649), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_final] = ACTIONS(462), - [anon_sym_new] = ACTIONS(655), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), - [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [254] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_primary_expression] = STATE(1127), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(999), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym_resource] = STATE(1139), - [sym__annotation] = STATE(692), - [sym_marker_annotation] = STATE(692), - [sym_annotation] = STATE(692), - [sym_modifiers] = STATE(831), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(799), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym__reserved_identifier] = STATE(1003), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(649), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_final] = ACTIONS(462), - [anon_sym_new] = ACTIONS(655), - [anon_sym_default] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(69), - [anon_sym_synchronized] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(464), - [anon_sym_open] = ACTIONS(69), - [anon_sym_module] = ACTIONS(69), - [anon_sym_static] = ACTIONS(462), - [anon_sym_with] = ACTIONS(69), - [anon_sym_public] = ACTIONS(462), - [anon_sym_protected] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_strictfp] = ACTIONS(462), - [anon_sym_native] = ACTIONS(462), - [anon_sym_transient] = ACTIONS(462), - [anon_sym_volatile] = ACTIONS(462), - [anon_sym_sealed] = ACTIONS(466), - [anon_sym_non_DASHsealed] = ACTIONS(468), - [anon_sym_record] = ACTIONS(69), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(663), - [sym_identifier] = ACTIONS(665), - [sym_decimal_integer_literal] = ACTIONS(665), - [sym_hex_integer_literal] = ACTIONS(665), - [sym_octal_integer_literal] = ACTIONS(665), - [sym_binary_integer_literal] = ACTIONS(663), - [sym_decimal_floating_point_literal] = ACTIONS(663), - [sym_hex_floating_point_literal] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_character_literal] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(663), - [sym_null_literal] = ACTIONS(665), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(665), - [anon_sym_DASH] = ACTIONS(665), - [anon_sym_final] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_new] = ACTIONS(665), - [anon_sym_class] = ACTIONS(665), - [anon_sym_switch] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_case] = ACTIONS(665), - [anon_sym_default] = ACTIONS(665), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_assert] = ACTIONS(665), - [anon_sym_do] = ACTIONS(665), - [anon_sym_while] = ACTIONS(665), - [anon_sym_break] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(665), - [anon_sym_return] = ACTIONS(665), - [anon_sym_yield] = ACTIONS(665), - [anon_sym_synchronized] = ACTIONS(665), - [anon_sym_throw] = ACTIONS(665), - [anon_sym_try] = ACTIONS(665), - [anon_sym_if] = ACTIONS(665), - [anon_sym_else] = ACTIONS(665), - [anon_sym_for] = ACTIONS(665), - [anon_sym_AT] = ACTIONS(665), - [anon_sym_open] = ACTIONS(665), - [anon_sym_module] = ACTIONS(665), - [anon_sym_static] = ACTIONS(665), - [anon_sym_with] = ACTIONS(665), - [anon_sym_package] = ACTIONS(665), - [anon_sym_import] = ACTIONS(665), - [anon_sym_enum] = ACTIONS(665), - [anon_sym_public] = ACTIONS(665), - [anon_sym_protected] = ACTIONS(665), - [anon_sym_private] = ACTIONS(665), - [anon_sym_abstract] = ACTIONS(665), - [anon_sym_strictfp] = ACTIONS(665), - [anon_sym_native] = ACTIONS(665), - [anon_sym_transient] = ACTIONS(665), - [anon_sym_volatile] = ACTIONS(665), - [anon_sym_sealed] = ACTIONS(665), - [anon_sym_non_DASHsealed] = ACTIONS(663), - [anon_sym_record] = ACTIONS(665), - [anon_sym_ATinterface] = ACTIONS(663), - [anon_sym_interface] = ACTIONS(665), - [anon_sym_byte] = ACTIONS(665), - [anon_sym_short] = ACTIONS(665), - [anon_sym_int] = ACTIONS(665), - [anon_sym_long] = ACTIONS(665), - [anon_sym_char] = ACTIONS(665), - [anon_sym_float] = ACTIONS(665), - [anon_sym_double] = ACTIONS(665), - [sym_boolean_type] = ACTIONS(665), - [sym_void_type] = ACTIONS(665), - [sym_this] = ACTIONS(665), - [sym_super] = ACTIONS(665), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(667), - [sym_identifier] = ACTIONS(669), - [sym_decimal_integer_literal] = ACTIONS(669), - [sym_hex_integer_literal] = ACTIONS(669), - [sym_octal_integer_literal] = ACTIONS(669), - [sym_binary_integer_literal] = ACTIONS(667), - [sym_decimal_floating_point_literal] = ACTIONS(667), - [sym_hex_floating_point_literal] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_character_literal] = ACTIONS(667), - [anon_sym_DQUOTE] = ACTIONS(669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(667), - [sym_null_literal] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(667), - [anon_sym_PLUS] = ACTIONS(669), - [anon_sym_DASH] = ACTIONS(669), - [anon_sym_final] = ACTIONS(669), - [anon_sym_BANG] = ACTIONS(667), - [anon_sym_TILDE] = ACTIONS(667), - [anon_sym_PLUS_PLUS] = ACTIONS(667), - [anon_sym_DASH_DASH] = ACTIONS(667), - [anon_sym_new] = ACTIONS(669), - [anon_sym_class] = ACTIONS(669), - [anon_sym_switch] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_case] = ACTIONS(669), - [anon_sym_default] = ACTIONS(669), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_assert] = ACTIONS(669), - [anon_sym_do] = ACTIONS(669), - [anon_sym_while] = ACTIONS(669), - [anon_sym_break] = ACTIONS(669), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_return] = ACTIONS(669), - [anon_sym_yield] = ACTIONS(669), - [anon_sym_synchronized] = ACTIONS(669), - [anon_sym_throw] = ACTIONS(669), - [anon_sym_try] = ACTIONS(669), - [anon_sym_if] = ACTIONS(669), - [anon_sym_else] = ACTIONS(669), - [anon_sym_for] = ACTIONS(669), - [anon_sym_AT] = ACTIONS(669), - [anon_sym_open] = ACTIONS(669), - [anon_sym_module] = ACTIONS(669), - [anon_sym_static] = ACTIONS(669), - [anon_sym_with] = ACTIONS(669), - [anon_sym_package] = ACTIONS(669), - [anon_sym_import] = ACTIONS(669), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_public] = ACTIONS(669), - [anon_sym_protected] = ACTIONS(669), - [anon_sym_private] = ACTIONS(669), - [anon_sym_abstract] = ACTIONS(669), - [anon_sym_strictfp] = ACTIONS(669), - [anon_sym_native] = ACTIONS(669), - [anon_sym_transient] = ACTIONS(669), - [anon_sym_volatile] = ACTIONS(669), - [anon_sym_sealed] = ACTIONS(669), - [anon_sym_non_DASHsealed] = ACTIONS(667), - [anon_sym_record] = ACTIONS(669), - [anon_sym_ATinterface] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(669), - [anon_sym_byte] = ACTIONS(669), - [anon_sym_short] = ACTIONS(669), - [anon_sym_int] = ACTIONS(669), - [anon_sym_long] = ACTIONS(669), - [anon_sym_char] = ACTIONS(669), - [anon_sym_float] = ACTIONS(669), - [anon_sym_double] = ACTIONS(669), - [sym_boolean_type] = ACTIONS(669), - [sym_void_type] = ACTIONS(669), - [sym_this] = ACTIONS(669), - [sym_super] = ACTIONS(669), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(671), - [sym_identifier] = ACTIONS(673), - [sym_decimal_integer_literal] = ACTIONS(673), - [sym_hex_integer_literal] = ACTIONS(673), - [sym_octal_integer_literal] = ACTIONS(673), - [sym_binary_integer_literal] = ACTIONS(671), - [sym_decimal_floating_point_literal] = ACTIONS(671), - [sym_hex_floating_point_literal] = ACTIONS(673), - [sym_true] = ACTIONS(673), - [sym_false] = ACTIONS(673), - [sym_character_literal] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(673), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(671), - [sym_null_literal] = ACTIONS(673), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(673), - [anon_sym_final] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(671), - [anon_sym_PLUS_PLUS] = ACTIONS(671), - [anon_sym_DASH_DASH] = ACTIONS(671), - [anon_sym_new] = ACTIONS(673), - [anon_sym_class] = ACTIONS(673), - [anon_sym_switch] = ACTIONS(673), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_case] = ACTIONS(673), - [anon_sym_default] = ACTIONS(673), - [anon_sym_SEMI] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_do] = ACTIONS(673), - [anon_sym_while] = ACTIONS(673), - [anon_sym_break] = ACTIONS(673), - [anon_sym_continue] = ACTIONS(673), - [anon_sym_return] = ACTIONS(673), - [anon_sym_yield] = ACTIONS(673), - [anon_sym_synchronized] = ACTIONS(673), - [anon_sym_throw] = ACTIONS(673), - [anon_sym_try] = ACTIONS(673), - [anon_sym_if] = ACTIONS(673), - [anon_sym_else] = ACTIONS(673), - [anon_sym_for] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(673), - [anon_sym_open] = ACTIONS(673), - [anon_sym_module] = ACTIONS(673), - [anon_sym_static] = ACTIONS(673), - [anon_sym_with] = ACTIONS(673), - [anon_sym_package] = ACTIONS(673), - [anon_sym_import] = ACTIONS(673), - [anon_sym_enum] = ACTIONS(673), - [anon_sym_public] = ACTIONS(673), - [anon_sym_protected] = ACTIONS(673), - [anon_sym_private] = ACTIONS(673), - [anon_sym_abstract] = ACTIONS(673), - [anon_sym_strictfp] = ACTIONS(673), - [anon_sym_native] = ACTIONS(673), - [anon_sym_transient] = ACTIONS(673), - [anon_sym_volatile] = ACTIONS(673), - [anon_sym_sealed] = ACTIONS(673), - [anon_sym_non_DASHsealed] = ACTIONS(671), - [anon_sym_record] = ACTIONS(673), - [anon_sym_ATinterface] = ACTIONS(671), - [anon_sym_interface] = ACTIONS(673), - [anon_sym_byte] = ACTIONS(673), - [anon_sym_short] = ACTIONS(673), - [anon_sym_int] = ACTIONS(673), - [anon_sym_long] = ACTIONS(673), - [anon_sym_char] = ACTIONS(673), - [anon_sym_float] = ACTIONS(673), - [anon_sym_double] = ACTIONS(673), - [sym_boolean_type] = ACTIONS(673), - [sym_void_type] = ACTIONS(673), - [sym_this] = ACTIONS(673), - [sym_super] = ACTIONS(673), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(675), - [sym_identifier] = ACTIONS(677), - [sym_decimal_integer_literal] = ACTIONS(677), - [sym_hex_integer_literal] = ACTIONS(677), - [sym_octal_integer_literal] = ACTIONS(677), - [sym_binary_integer_literal] = ACTIONS(675), - [sym_decimal_floating_point_literal] = ACTIONS(675), - [sym_hex_floating_point_literal] = ACTIONS(677), - [sym_true] = ACTIONS(677), - [sym_false] = ACTIONS(677), - [sym_character_literal] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(675), - [sym_null_literal] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_final] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_PLUS_PLUS] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(675), - [anon_sym_new] = ACTIONS(677), - [anon_sym_class] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_case] = ACTIONS(677), - [anon_sym_default] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_assert] = ACTIONS(677), - [anon_sym_do] = ACTIONS(677), - [anon_sym_while] = ACTIONS(677), - [anon_sym_break] = ACTIONS(677), - [anon_sym_continue] = ACTIONS(677), - [anon_sym_return] = ACTIONS(677), - [anon_sym_yield] = ACTIONS(677), - [anon_sym_synchronized] = ACTIONS(677), - [anon_sym_throw] = ACTIONS(677), - [anon_sym_try] = ACTIONS(677), - [anon_sym_if] = ACTIONS(677), - [anon_sym_else] = ACTIONS(677), - [anon_sym_for] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym_open] = ACTIONS(677), - [anon_sym_module] = ACTIONS(677), - [anon_sym_static] = ACTIONS(677), - [anon_sym_with] = ACTIONS(677), - [anon_sym_package] = ACTIONS(677), - [anon_sym_import] = ACTIONS(677), - [anon_sym_enum] = ACTIONS(677), - [anon_sym_public] = ACTIONS(677), - [anon_sym_protected] = ACTIONS(677), - [anon_sym_private] = ACTIONS(677), - [anon_sym_abstract] = ACTIONS(677), - [anon_sym_strictfp] = ACTIONS(677), - [anon_sym_native] = ACTIONS(677), - [anon_sym_transient] = ACTIONS(677), - [anon_sym_volatile] = ACTIONS(677), - [anon_sym_sealed] = ACTIONS(677), - [anon_sym_non_DASHsealed] = ACTIONS(675), - [anon_sym_record] = ACTIONS(677), - [anon_sym_ATinterface] = ACTIONS(675), - [anon_sym_interface] = ACTIONS(677), - [anon_sym_byte] = ACTIONS(677), - [anon_sym_short] = ACTIONS(677), - [anon_sym_int] = ACTIONS(677), - [anon_sym_long] = ACTIONS(677), - [anon_sym_char] = ACTIONS(677), - [anon_sym_float] = ACTIONS(677), - [anon_sym_double] = ACTIONS(677), - [sym_boolean_type] = ACTIONS(677), - [sym_void_type] = ACTIONS(677), - [sym_this] = ACTIONS(677), - [sym_super] = ACTIONS(677), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [259] = { - [ts_builtin_sym_end] = ACTIONS(679), - [sym_identifier] = ACTIONS(681), - [sym_decimal_integer_literal] = ACTIONS(681), - [sym_hex_integer_literal] = ACTIONS(681), - [sym_octal_integer_literal] = ACTIONS(681), - [sym_binary_integer_literal] = ACTIONS(679), - [sym_decimal_floating_point_literal] = ACTIONS(679), - [sym_hex_floating_point_literal] = ACTIONS(681), - [sym_true] = ACTIONS(681), - [sym_false] = ACTIONS(681), - [sym_character_literal] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(681), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(679), - [anon_sym_RBRACE] = ACTIONS(679), - [sym_null_literal] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_final] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_TILDE] = ACTIONS(679), - [anon_sym_PLUS_PLUS] = ACTIONS(679), - [anon_sym_DASH_DASH] = ACTIONS(679), - [anon_sym_new] = ACTIONS(681), - [anon_sym_class] = ACTIONS(681), - [anon_sym_switch] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(679), - [anon_sym_case] = ACTIONS(681), - [anon_sym_default] = ACTIONS(681), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym_assert] = ACTIONS(681), - [anon_sym_do] = ACTIONS(681), - [anon_sym_while] = ACTIONS(681), - [anon_sym_break] = ACTIONS(681), - [anon_sym_continue] = ACTIONS(681), - [anon_sym_return] = ACTIONS(681), - [anon_sym_yield] = ACTIONS(681), - [anon_sym_synchronized] = ACTIONS(681), - [anon_sym_throw] = ACTIONS(681), - [anon_sym_try] = ACTIONS(681), - [anon_sym_if] = ACTIONS(681), - [anon_sym_else] = ACTIONS(681), - [anon_sym_for] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_open] = ACTIONS(681), - [anon_sym_module] = ACTIONS(681), - [anon_sym_static] = ACTIONS(681), - [anon_sym_with] = ACTIONS(681), - [anon_sym_package] = ACTIONS(681), - [anon_sym_import] = ACTIONS(681), - [anon_sym_enum] = ACTIONS(681), - [anon_sym_public] = ACTIONS(681), - [anon_sym_protected] = ACTIONS(681), - [anon_sym_private] = ACTIONS(681), - [anon_sym_abstract] = ACTIONS(681), - [anon_sym_strictfp] = ACTIONS(681), - [anon_sym_native] = ACTIONS(681), - [anon_sym_transient] = ACTIONS(681), - [anon_sym_volatile] = ACTIONS(681), - [anon_sym_sealed] = ACTIONS(681), - [anon_sym_non_DASHsealed] = ACTIONS(679), - [anon_sym_record] = ACTIONS(681), - [anon_sym_ATinterface] = ACTIONS(679), - [anon_sym_interface] = ACTIONS(681), - [anon_sym_byte] = ACTIONS(681), - [anon_sym_short] = ACTIONS(681), - [anon_sym_int] = ACTIONS(681), - [anon_sym_long] = ACTIONS(681), - [anon_sym_char] = ACTIONS(681), - [anon_sym_float] = ACTIONS(681), - [anon_sym_double] = ACTIONS(681), - [sym_boolean_type] = ACTIONS(681), - [sym_void_type] = ACTIONS(681), - [sym_this] = ACTIONS(681), - [sym_super] = ACTIONS(681), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(683), - [sym_identifier] = ACTIONS(685), - [sym_decimal_integer_literal] = ACTIONS(685), - [sym_hex_integer_literal] = ACTIONS(685), - [sym_octal_integer_literal] = ACTIONS(685), - [sym_binary_integer_literal] = ACTIONS(683), - [sym_decimal_floating_point_literal] = ACTIONS(683), - [sym_hex_floating_point_literal] = ACTIONS(685), - [sym_true] = ACTIONS(685), - [sym_false] = ACTIONS(685), - [sym_character_literal] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(685), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(683), - [sym_null_literal] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_final] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(683), - [anon_sym_PLUS_PLUS] = ACTIONS(683), - [anon_sym_DASH_DASH] = ACTIONS(683), - [anon_sym_new] = ACTIONS(685), - [anon_sym_class] = ACTIONS(685), - [anon_sym_switch] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_case] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(683), - [anon_sym_assert] = ACTIONS(685), - [anon_sym_do] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [anon_sym_break] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_yield] = ACTIONS(685), - [anon_sym_synchronized] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(685), - [anon_sym_try] = ACTIONS(685), - [anon_sym_if] = ACTIONS(685), - [anon_sym_else] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym_open] = ACTIONS(685), - [anon_sym_module] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_with] = ACTIONS(685), - [anon_sym_package] = ACTIONS(685), - [anon_sym_import] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_public] = ACTIONS(685), - [anon_sym_protected] = ACTIONS(685), - [anon_sym_private] = ACTIONS(685), - [anon_sym_abstract] = ACTIONS(685), - [anon_sym_strictfp] = ACTIONS(685), - [anon_sym_native] = ACTIONS(685), - [anon_sym_transient] = ACTIONS(685), - [anon_sym_volatile] = ACTIONS(685), - [anon_sym_sealed] = ACTIONS(685), - [anon_sym_non_DASHsealed] = ACTIONS(683), - [anon_sym_record] = ACTIONS(685), - [anon_sym_ATinterface] = ACTIONS(683), - [anon_sym_interface] = ACTIONS(685), - [anon_sym_byte] = ACTIONS(685), - [anon_sym_short] = ACTIONS(685), - [anon_sym_int] = ACTIONS(685), - [anon_sym_long] = ACTIONS(685), - [anon_sym_char] = ACTIONS(685), - [anon_sym_float] = ACTIONS(685), - [anon_sym_double] = ACTIONS(685), - [sym_boolean_type] = ACTIONS(685), - [sym_void_type] = ACTIONS(685), - [sym_this] = ACTIONS(685), - [sym_super] = ACTIONS(685), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(687), - [sym_identifier] = ACTIONS(689), - [sym_decimal_integer_literal] = ACTIONS(689), - [sym_hex_integer_literal] = ACTIONS(689), - [sym_octal_integer_literal] = ACTIONS(689), - [sym_binary_integer_literal] = ACTIONS(687), - [sym_decimal_floating_point_literal] = ACTIONS(687), - [sym_hex_floating_point_literal] = ACTIONS(689), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_character_literal] = ACTIONS(687), - [anon_sym_DQUOTE] = ACTIONS(689), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(687), - [anon_sym_RBRACE] = ACTIONS(687), - [sym_null_literal] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_final] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_new] = ACTIONS(689), - [anon_sym_class] = ACTIONS(689), - [anon_sym_switch] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(687), - [anon_sym_case] = ACTIONS(689), - [anon_sym_default] = ACTIONS(689), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_assert] = ACTIONS(689), - [anon_sym_do] = ACTIONS(689), - [anon_sym_while] = ACTIONS(689), - [anon_sym_break] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_return] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(689), - [anon_sym_synchronized] = ACTIONS(689), - [anon_sym_throw] = ACTIONS(689), - [anon_sym_try] = ACTIONS(689), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(689), - [anon_sym_for] = ACTIONS(689), - [anon_sym_AT] = ACTIONS(689), - [anon_sym_open] = ACTIONS(689), - [anon_sym_module] = ACTIONS(689), - [anon_sym_static] = ACTIONS(689), - [anon_sym_with] = ACTIONS(689), - [anon_sym_package] = ACTIONS(689), - [anon_sym_import] = ACTIONS(689), - [anon_sym_enum] = ACTIONS(689), - [anon_sym_public] = ACTIONS(689), - [anon_sym_protected] = ACTIONS(689), - [anon_sym_private] = ACTIONS(689), - [anon_sym_abstract] = ACTIONS(689), - [anon_sym_strictfp] = ACTIONS(689), - [anon_sym_native] = ACTIONS(689), - [anon_sym_transient] = ACTIONS(689), - [anon_sym_volatile] = ACTIONS(689), - [anon_sym_sealed] = ACTIONS(689), - [anon_sym_non_DASHsealed] = ACTIONS(687), - [anon_sym_record] = ACTIONS(689), - [anon_sym_ATinterface] = ACTIONS(687), - [anon_sym_interface] = ACTIONS(689), - [anon_sym_byte] = ACTIONS(689), - [anon_sym_short] = ACTIONS(689), - [anon_sym_int] = ACTIONS(689), - [anon_sym_long] = ACTIONS(689), - [anon_sym_char] = ACTIONS(689), - [anon_sym_float] = ACTIONS(689), - [anon_sym_double] = ACTIONS(689), - [sym_boolean_type] = ACTIONS(689), - [sym_void_type] = ACTIONS(689), - [sym_this] = ACTIONS(689), - [sym_super] = ACTIONS(689), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(691), - [sym_identifier] = ACTIONS(693), - [sym_decimal_integer_literal] = ACTIONS(693), - [sym_hex_integer_literal] = ACTIONS(693), - [sym_octal_integer_literal] = ACTIONS(693), - [sym_binary_integer_literal] = ACTIONS(691), - [sym_decimal_floating_point_literal] = ACTIONS(691), - [sym_hex_floating_point_literal] = ACTIONS(693), - [sym_true] = ACTIONS(693), - [sym_false] = ACTIONS(693), - [sym_character_literal] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(693), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(691), - [anon_sym_RBRACE] = ACTIONS(691), - [sym_null_literal] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_final] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_new] = ACTIONS(693), - [anon_sym_class] = ACTIONS(693), - [anon_sym_switch] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(691), - [anon_sym_case] = ACTIONS(693), - [anon_sym_default] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_assert] = ACTIONS(693), - [anon_sym_do] = ACTIONS(693), - [anon_sym_while] = ACTIONS(693), - [anon_sym_break] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(693), - [anon_sym_return] = ACTIONS(693), - [anon_sym_yield] = ACTIONS(693), - [anon_sym_synchronized] = ACTIONS(693), - [anon_sym_throw] = ACTIONS(693), - [anon_sym_try] = ACTIONS(693), - [anon_sym_if] = ACTIONS(693), - [anon_sym_else] = ACTIONS(693), - [anon_sym_for] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(693), - [anon_sym_open] = ACTIONS(693), - [anon_sym_module] = ACTIONS(693), - [anon_sym_static] = ACTIONS(693), - [anon_sym_with] = ACTIONS(693), - [anon_sym_package] = ACTIONS(693), - [anon_sym_import] = ACTIONS(693), - [anon_sym_enum] = ACTIONS(693), - [anon_sym_public] = ACTIONS(693), - [anon_sym_protected] = ACTIONS(693), - [anon_sym_private] = ACTIONS(693), - [anon_sym_abstract] = ACTIONS(693), - [anon_sym_strictfp] = ACTIONS(693), - [anon_sym_native] = ACTIONS(693), - [anon_sym_transient] = ACTIONS(693), - [anon_sym_volatile] = ACTIONS(693), - [anon_sym_sealed] = ACTIONS(693), - [anon_sym_non_DASHsealed] = ACTIONS(691), - [anon_sym_record] = ACTIONS(693), - [anon_sym_ATinterface] = ACTIONS(691), - [anon_sym_interface] = ACTIONS(693), - [anon_sym_byte] = ACTIONS(693), - [anon_sym_short] = ACTIONS(693), - [anon_sym_int] = ACTIONS(693), - [anon_sym_long] = ACTIONS(693), - [anon_sym_char] = ACTIONS(693), - [anon_sym_float] = ACTIONS(693), - [anon_sym_double] = ACTIONS(693), - [sym_boolean_type] = ACTIONS(693), - [sym_void_type] = ACTIONS(693), - [sym_this] = ACTIONS(693), - [sym_super] = ACTIONS(693), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(695), - [sym_identifier] = ACTIONS(697), - [sym_decimal_integer_literal] = ACTIONS(697), - [sym_hex_integer_literal] = ACTIONS(697), - [sym_octal_integer_literal] = ACTIONS(697), - [sym_binary_integer_literal] = ACTIONS(695), - [sym_decimal_floating_point_literal] = ACTIONS(695), - [sym_hex_floating_point_literal] = ACTIONS(697), - [sym_true] = ACTIONS(697), - [sym_false] = ACTIONS(697), - [sym_character_literal] = ACTIONS(695), - [anon_sym_DQUOTE] = ACTIONS(697), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), - [anon_sym_RBRACE] = ACTIONS(695), - [sym_null_literal] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(697), - [anon_sym_DASH] = ACTIONS(697), - [anon_sym_final] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(695), - [anon_sym_DASH_DASH] = ACTIONS(695), - [anon_sym_new] = ACTIONS(697), - [anon_sym_class] = ACTIONS(697), - [anon_sym_switch] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_case] = ACTIONS(697), - [anon_sym_default] = ACTIONS(697), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_assert] = ACTIONS(697), - [anon_sym_do] = ACTIONS(697), - [anon_sym_while] = ACTIONS(697), - [anon_sym_break] = ACTIONS(697), - [anon_sym_continue] = ACTIONS(697), - [anon_sym_return] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_synchronized] = ACTIONS(697), - [anon_sym_throw] = ACTIONS(697), - [anon_sym_try] = ACTIONS(697), - [anon_sym_if] = ACTIONS(697), - [anon_sym_else] = ACTIONS(697), - [anon_sym_for] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(697), - [anon_sym_open] = ACTIONS(697), - [anon_sym_module] = ACTIONS(697), - [anon_sym_static] = ACTIONS(697), - [anon_sym_with] = ACTIONS(697), - [anon_sym_package] = ACTIONS(697), - [anon_sym_import] = ACTIONS(697), - [anon_sym_enum] = ACTIONS(697), - [anon_sym_public] = ACTIONS(697), - [anon_sym_protected] = ACTIONS(697), - [anon_sym_private] = ACTIONS(697), - [anon_sym_abstract] = ACTIONS(697), - [anon_sym_strictfp] = ACTIONS(697), - [anon_sym_native] = ACTIONS(697), - [anon_sym_transient] = ACTIONS(697), - [anon_sym_volatile] = ACTIONS(697), - [anon_sym_sealed] = ACTIONS(697), - [anon_sym_non_DASHsealed] = ACTIONS(695), - [anon_sym_record] = ACTIONS(697), - [anon_sym_ATinterface] = ACTIONS(695), - [anon_sym_interface] = ACTIONS(697), - [anon_sym_byte] = ACTIONS(697), - [anon_sym_short] = ACTIONS(697), - [anon_sym_int] = ACTIONS(697), - [anon_sym_long] = ACTIONS(697), - [anon_sym_char] = ACTIONS(697), - [anon_sym_float] = ACTIONS(697), - [anon_sym_double] = ACTIONS(697), - [sym_boolean_type] = ACTIONS(697), - [sym_void_type] = ACTIONS(697), - [sym_this] = ACTIONS(697), - [sym_super] = ACTIONS(697), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(699), - [sym_identifier] = ACTIONS(701), - [sym_decimal_integer_literal] = ACTIONS(701), - [sym_hex_integer_literal] = ACTIONS(701), - [sym_octal_integer_literal] = ACTIONS(701), - [sym_binary_integer_literal] = ACTIONS(699), - [sym_decimal_floating_point_literal] = ACTIONS(699), - [sym_hex_floating_point_literal] = ACTIONS(701), - [sym_true] = ACTIONS(701), - [sym_false] = ACTIONS(701), - [sym_character_literal] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(701), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [sym_null_literal] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_final] = ACTIONS(701), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_new] = ACTIONS(701), - [anon_sym_class] = ACTIONS(701), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_case] = ACTIONS(701), - [anon_sym_default] = ACTIONS(701), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_assert] = ACTIONS(701), - [anon_sym_do] = ACTIONS(701), - [anon_sym_while] = ACTIONS(701), - [anon_sym_break] = ACTIONS(701), - [anon_sym_continue] = ACTIONS(701), - [anon_sym_return] = ACTIONS(701), - [anon_sym_yield] = ACTIONS(701), - [anon_sym_synchronized] = ACTIONS(701), - [anon_sym_throw] = ACTIONS(701), - [anon_sym_try] = ACTIONS(701), - [anon_sym_if] = ACTIONS(701), - [anon_sym_else] = ACTIONS(701), - [anon_sym_for] = ACTIONS(701), - [anon_sym_AT] = ACTIONS(701), - [anon_sym_open] = ACTIONS(701), - [anon_sym_module] = ACTIONS(701), - [anon_sym_static] = ACTIONS(701), - [anon_sym_with] = ACTIONS(701), - [anon_sym_package] = ACTIONS(701), - [anon_sym_import] = ACTIONS(701), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_public] = ACTIONS(701), - [anon_sym_protected] = ACTIONS(701), - [anon_sym_private] = ACTIONS(701), - [anon_sym_abstract] = ACTIONS(701), - [anon_sym_strictfp] = ACTIONS(701), - [anon_sym_native] = ACTIONS(701), - [anon_sym_transient] = ACTIONS(701), - [anon_sym_volatile] = ACTIONS(701), - [anon_sym_sealed] = ACTIONS(701), - [anon_sym_non_DASHsealed] = ACTIONS(699), - [anon_sym_record] = ACTIONS(701), - [anon_sym_ATinterface] = ACTIONS(699), - [anon_sym_interface] = ACTIONS(701), - [anon_sym_byte] = ACTIONS(701), - [anon_sym_short] = ACTIONS(701), - [anon_sym_int] = ACTIONS(701), - [anon_sym_long] = ACTIONS(701), - [anon_sym_char] = ACTIONS(701), - [anon_sym_float] = ACTIONS(701), - [anon_sym_double] = ACTIONS(701), - [sym_boolean_type] = ACTIONS(701), - [sym_void_type] = ACTIONS(701), - [sym_this] = ACTIONS(701), - [sym_super] = ACTIONS(701), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(703), - [sym_identifier] = ACTIONS(705), - [sym_decimal_integer_literal] = ACTIONS(705), - [sym_hex_integer_literal] = ACTIONS(705), - [sym_octal_integer_literal] = ACTIONS(705), - [sym_binary_integer_literal] = ACTIONS(703), - [sym_decimal_floating_point_literal] = ACTIONS(703), - [sym_hex_floating_point_literal] = ACTIONS(705), - [sym_true] = ACTIONS(705), - [sym_false] = ACTIONS(705), - [sym_character_literal] = ACTIONS(703), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(703), - [anon_sym_RBRACE] = ACTIONS(703), - [sym_null_literal] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(705), - [anon_sym_final] = ACTIONS(705), - [anon_sym_BANG] = ACTIONS(703), - [anon_sym_TILDE] = ACTIONS(703), - [anon_sym_PLUS_PLUS] = ACTIONS(703), - [anon_sym_DASH_DASH] = ACTIONS(703), - [anon_sym_new] = ACTIONS(705), - [anon_sym_class] = ACTIONS(705), - [anon_sym_switch] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_case] = ACTIONS(705), - [anon_sym_default] = ACTIONS(705), - [anon_sym_SEMI] = ACTIONS(703), - [anon_sym_assert] = ACTIONS(705), - [anon_sym_do] = ACTIONS(705), - [anon_sym_while] = ACTIONS(705), - [anon_sym_break] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(705), - [anon_sym_return] = ACTIONS(705), - [anon_sym_yield] = ACTIONS(705), - [anon_sym_synchronized] = ACTIONS(705), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_try] = ACTIONS(705), - [anon_sym_if] = ACTIONS(705), - [anon_sym_else] = ACTIONS(705), - [anon_sym_for] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [anon_sym_open] = ACTIONS(705), - [anon_sym_module] = ACTIONS(705), - [anon_sym_static] = ACTIONS(705), - [anon_sym_with] = ACTIONS(705), - [anon_sym_package] = ACTIONS(705), - [anon_sym_import] = ACTIONS(705), - [anon_sym_enum] = ACTIONS(705), - [anon_sym_public] = ACTIONS(705), - [anon_sym_protected] = ACTIONS(705), - [anon_sym_private] = ACTIONS(705), - [anon_sym_abstract] = ACTIONS(705), - [anon_sym_strictfp] = ACTIONS(705), - [anon_sym_native] = ACTIONS(705), - [anon_sym_transient] = ACTIONS(705), - [anon_sym_volatile] = ACTIONS(705), - [anon_sym_sealed] = ACTIONS(705), - [anon_sym_non_DASHsealed] = ACTIONS(703), - [anon_sym_record] = ACTIONS(705), - [anon_sym_ATinterface] = ACTIONS(703), - [anon_sym_interface] = ACTIONS(705), - [anon_sym_byte] = ACTIONS(705), - [anon_sym_short] = ACTIONS(705), - [anon_sym_int] = ACTIONS(705), - [anon_sym_long] = ACTIONS(705), - [anon_sym_char] = ACTIONS(705), - [anon_sym_float] = ACTIONS(705), - [anon_sym_double] = ACTIONS(705), - [sym_boolean_type] = ACTIONS(705), - [sym_void_type] = ACTIONS(705), - [sym_this] = ACTIONS(705), - [sym_super] = ACTIONS(705), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(707), - [sym_identifier] = ACTIONS(709), - [sym_decimal_integer_literal] = ACTIONS(709), - [sym_hex_integer_literal] = ACTIONS(709), - [sym_octal_integer_literal] = ACTIONS(709), - [sym_binary_integer_literal] = ACTIONS(707), - [sym_decimal_floating_point_literal] = ACTIONS(707), - [sym_hex_floating_point_literal] = ACTIONS(709), - [sym_true] = ACTIONS(709), - [sym_false] = ACTIONS(709), - [sym_character_literal] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(709), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(707), - [anon_sym_RBRACE] = ACTIONS(707), - [sym_null_literal] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_final] = ACTIONS(709), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_PLUS_PLUS] = ACTIONS(707), - [anon_sym_DASH_DASH] = ACTIONS(707), - [anon_sym_new] = ACTIONS(709), - [anon_sym_class] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(707), - [anon_sym_case] = ACTIONS(709), - [anon_sym_default] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_assert] = ACTIONS(709), - [anon_sym_do] = ACTIONS(709), - [anon_sym_while] = ACTIONS(709), - [anon_sym_break] = ACTIONS(709), - [anon_sym_continue] = ACTIONS(709), - [anon_sym_return] = ACTIONS(709), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_synchronized] = ACTIONS(709), - [anon_sym_throw] = ACTIONS(709), - [anon_sym_try] = ACTIONS(709), - [anon_sym_if] = ACTIONS(709), - [anon_sym_else] = ACTIONS(709), - [anon_sym_for] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_open] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_static] = ACTIONS(709), - [anon_sym_with] = ACTIONS(709), - [anon_sym_package] = ACTIONS(709), - [anon_sym_import] = ACTIONS(709), - [anon_sym_enum] = ACTIONS(709), - [anon_sym_public] = ACTIONS(709), - [anon_sym_protected] = ACTIONS(709), - [anon_sym_private] = ACTIONS(709), - [anon_sym_abstract] = ACTIONS(709), - [anon_sym_strictfp] = ACTIONS(709), - [anon_sym_native] = ACTIONS(709), - [anon_sym_transient] = ACTIONS(709), - [anon_sym_volatile] = ACTIONS(709), - [anon_sym_sealed] = ACTIONS(709), - [anon_sym_non_DASHsealed] = ACTIONS(707), - [anon_sym_record] = ACTIONS(709), - [anon_sym_ATinterface] = ACTIONS(707), - [anon_sym_interface] = ACTIONS(709), - [anon_sym_byte] = ACTIONS(709), - [anon_sym_short] = ACTIONS(709), - [anon_sym_int] = ACTIONS(709), - [anon_sym_long] = ACTIONS(709), - [anon_sym_char] = ACTIONS(709), - [anon_sym_float] = ACTIONS(709), - [anon_sym_double] = ACTIONS(709), - [sym_boolean_type] = ACTIONS(709), - [sym_void_type] = ACTIONS(709), - [sym_this] = ACTIONS(709), - [sym_super] = ACTIONS(709), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(711), - [sym_identifier] = ACTIONS(713), - [sym_decimal_integer_literal] = ACTIONS(713), - [sym_hex_integer_literal] = ACTIONS(713), - [sym_octal_integer_literal] = ACTIONS(713), - [sym_binary_integer_literal] = ACTIONS(711), - [sym_decimal_floating_point_literal] = ACTIONS(711), - [sym_hex_floating_point_literal] = ACTIONS(713), - [sym_true] = ACTIONS(713), - [sym_false] = ACTIONS(713), - [sym_character_literal] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(711), - [anon_sym_RBRACE] = ACTIONS(711), - [sym_null_literal] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_final] = ACTIONS(713), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_TILDE] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_new] = ACTIONS(713), - [anon_sym_class] = ACTIONS(713), - [anon_sym_switch] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(711), - [anon_sym_case] = ACTIONS(713), - [anon_sym_default] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_assert] = ACTIONS(713), - [anon_sym_do] = ACTIONS(713), - [anon_sym_while] = ACTIONS(713), - [anon_sym_break] = ACTIONS(713), - [anon_sym_continue] = ACTIONS(713), - [anon_sym_return] = ACTIONS(713), - [anon_sym_yield] = ACTIONS(713), - [anon_sym_synchronized] = ACTIONS(713), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(713), - [anon_sym_if] = ACTIONS(713), - [anon_sym_else] = ACTIONS(713), - [anon_sym_for] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), - [anon_sym_open] = ACTIONS(713), - [anon_sym_module] = ACTIONS(713), - [anon_sym_static] = ACTIONS(713), - [anon_sym_with] = ACTIONS(713), - [anon_sym_package] = ACTIONS(713), - [anon_sym_import] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(713), - [anon_sym_public] = ACTIONS(713), - [anon_sym_protected] = ACTIONS(713), - [anon_sym_private] = ACTIONS(713), - [anon_sym_abstract] = ACTIONS(713), - [anon_sym_strictfp] = ACTIONS(713), - [anon_sym_native] = ACTIONS(713), - [anon_sym_transient] = ACTIONS(713), - [anon_sym_volatile] = ACTIONS(713), - [anon_sym_sealed] = ACTIONS(713), - [anon_sym_non_DASHsealed] = ACTIONS(711), - [anon_sym_record] = ACTIONS(713), - [anon_sym_ATinterface] = ACTIONS(711), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_byte] = ACTIONS(713), - [anon_sym_short] = ACTIONS(713), - [anon_sym_int] = ACTIONS(713), - [anon_sym_long] = ACTIONS(713), - [anon_sym_char] = ACTIONS(713), - [anon_sym_float] = ACTIONS(713), - [anon_sym_double] = ACTIONS(713), - [sym_boolean_type] = ACTIONS(713), - [sym_void_type] = ACTIONS(713), - [sym_this] = ACTIONS(713), - [sym_super] = ACTIONS(713), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(715), - [sym_identifier] = ACTIONS(717), - [sym_decimal_integer_literal] = ACTIONS(717), - [sym_hex_integer_literal] = ACTIONS(717), - [sym_octal_integer_literal] = ACTIONS(717), - [sym_binary_integer_literal] = ACTIONS(715), - [sym_decimal_floating_point_literal] = ACTIONS(715), - [sym_hex_floating_point_literal] = ACTIONS(717), - [sym_true] = ACTIONS(717), - [sym_false] = ACTIONS(717), - [sym_character_literal] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(717), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(715), - [anon_sym_RBRACE] = ACTIONS(715), - [sym_null_literal] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(715), - [anon_sym_PLUS] = ACTIONS(717), - [anon_sym_DASH] = ACTIONS(717), - [anon_sym_final] = ACTIONS(717), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(715), - [anon_sym_PLUS_PLUS] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_new] = ACTIONS(717), - [anon_sym_class] = ACTIONS(717), - [anon_sym_switch] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_case] = ACTIONS(717), - [anon_sym_default] = ACTIONS(717), - [anon_sym_SEMI] = ACTIONS(715), - [anon_sym_assert] = ACTIONS(717), - [anon_sym_do] = ACTIONS(717), - [anon_sym_while] = ACTIONS(717), - [anon_sym_break] = ACTIONS(717), - [anon_sym_continue] = ACTIONS(717), - [anon_sym_return] = ACTIONS(717), - [anon_sym_yield] = ACTIONS(717), - [anon_sym_synchronized] = ACTIONS(717), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_try] = ACTIONS(717), - [anon_sym_if] = ACTIONS(717), - [anon_sym_else] = ACTIONS(717), - [anon_sym_for] = ACTIONS(717), - [anon_sym_AT] = ACTIONS(717), - [anon_sym_open] = ACTIONS(717), - [anon_sym_module] = ACTIONS(717), - [anon_sym_static] = ACTIONS(717), - [anon_sym_with] = ACTIONS(717), - [anon_sym_package] = ACTIONS(717), - [anon_sym_import] = ACTIONS(717), - [anon_sym_enum] = ACTIONS(717), - [anon_sym_public] = ACTIONS(717), - [anon_sym_protected] = ACTIONS(717), - [anon_sym_private] = ACTIONS(717), - [anon_sym_abstract] = ACTIONS(717), - [anon_sym_strictfp] = ACTIONS(717), - [anon_sym_native] = ACTIONS(717), - [anon_sym_transient] = ACTIONS(717), - [anon_sym_volatile] = ACTIONS(717), - [anon_sym_sealed] = ACTIONS(717), - [anon_sym_non_DASHsealed] = ACTIONS(715), - [anon_sym_record] = ACTIONS(717), - [anon_sym_ATinterface] = ACTIONS(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_byte] = ACTIONS(717), - [anon_sym_short] = ACTIONS(717), - [anon_sym_int] = ACTIONS(717), - [anon_sym_long] = ACTIONS(717), - [anon_sym_char] = ACTIONS(717), - [anon_sym_float] = ACTIONS(717), - [anon_sym_double] = ACTIONS(717), - [sym_boolean_type] = ACTIONS(717), - [sym_void_type] = ACTIONS(717), - [sym_this] = ACTIONS(717), - [sym_super] = ACTIONS(717), + [STATE(210)] = { + [ts_builtin_sym_end] = ACTIONS(791), + [sym_identifier] = ACTIONS(793), + [sym_decimal_integer_literal] = ACTIONS(793), + [sym_hex_integer_literal] = ACTIONS(793), + [sym_octal_integer_literal] = ACTIONS(793), + [sym_binary_integer_literal] = ACTIONS(791), + [sym_decimal_floating_point_literal] = ACTIONS(791), + [sym_hex_floating_point_literal] = ACTIONS(793), + [sym_true] = ACTIONS(793), + [sym_false] = ACTIONS(793), + [sym_character_literal] = ACTIONS(791), + [anon_sym_DQUOTE] = ACTIONS(793), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(791), + [sym_null_literal] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_final] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_DASH_DASH] = ACTIONS(791), + [anon_sym_new] = ACTIONS(793), + [anon_sym_class] = ACTIONS(793), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(791), + [anon_sym_case] = ACTIONS(793), + [anon_sym_default] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_assert] = ACTIONS(793), + [anon_sym_do] = ACTIONS(793), + [anon_sym_while] = ACTIONS(793), + [anon_sym_break] = ACTIONS(793), + [anon_sym_continue] = ACTIONS(793), + [anon_sym_return] = ACTIONS(793), + [anon_sym_yield] = ACTIONS(793), + [anon_sym_synchronized] = ACTIONS(793), + [anon_sym_throw] = ACTIONS(793), + [anon_sym_try] = ACTIONS(793), + [anon_sym_if] = ACTIONS(793), + [anon_sym_else] = ACTIONS(793), + [anon_sym_for] = ACTIONS(793), + [anon_sym_AT] = ACTIONS(793), + [anon_sym_open] = ACTIONS(793), + [anon_sym_module] = ACTIONS(793), + [anon_sym_static] = ACTIONS(793), + [anon_sym_package] = ACTIONS(793), + [anon_sym_import] = ACTIONS(793), + [anon_sym_enum] = ACTIONS(793), + [anon_sym_public] = ACTIONS(793), + [anon_sym_protected] = ACTIONS(793), + [anon_sym_private] = ACTIONS(793), + [anon_sym_abstract] = ACTIONS(793), + [anon_sym_strictfp] = ACTIONS(793), + [anon_sym_native] = ACTIONS(793), + [anon_sym_transient] = ACTIONS(793), + [anon_sym_volatile] = ACTIONS(793), + [anon_sym_sealed] = ACTIONS(793), + [anon_sym_non_DASHsealed] = ACTIONS(791), + [anon_sym_record] = ACTIONS(793), + [anon_sym_ATinterface] = ACTIONS(791), + [anon_sym_interface] = ACTIONS(793), + [anon_sym_byte] = ACTIONS(793), + [anon_sym_short] = ACTIONS(793), + [anon_sym_int] = ACTIONS(793), + [anon_sym_long] = ACTIONS(793), + [anon_sym_char] = ACTIONS(793), + [anon_sym_float] = ACTIONS(793), + [anon_sym_double] = ACTIONS(793), + [sym_boolean_type] = ACTIONS(793), + [sym_void_type] = ACTIONS(793), + [sym_this] = ACTIONS(793), + [sym_super] = ACTIONS(793), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(719), - [sym_identifier] = ACTIONS(721), - [sym_decimal_integer_literal] = ACTIONS(721), - [sym_hex_integer_literal] = ACTIONS(721), - [sym_octal_integer_literal] = ACTIONS(721), - [sym_binary_integer_literal] = ACTIONS(719), - [sym_decimal_floating_point_literal] = ACTIONS(719), - [sym_hex_floating_point_literal] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_character_literal] = ACTIONS(719), - [anon_sym_DQUOTE] = ACTIONS(721), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(719), - [sym_null_literal] = ACTIONS(721), - [anon_sym_LPAREN] = ACTIONS(719), - [anon_sym_LT] = ACTIONS(719), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_final] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_TILDE] = ACTIONS(719), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [anon_sym_new] = ACTIONS(721), - [anon_sym_class] = ACTIONS(721), - [anon_sym_switch] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_case] = ACTIONS(721), - [anon_sym_default] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(719), - [anon_sym_assert] = ACTIONS(721), - [anon_sym_do] = ACTIONS(721), - [anon_sym_while] = ACTIONS(721), - [anon_sym_break] = ACTIONS(721), - [anon_sym_continue] = ACTIONS(721), - [anon_sym_return] = ACTIONS(721), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_synchronized] = ACTIONS(721), - [anon_sym_throw] = ACTIONS(721), - [anon_sym_try] = ACTIONS(721), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(721), - [anon_sym_for] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(721), - [anon_sym_open] = ACTIONS(721), - [anon_sym_module] = ACTIONS(721), - [anon_sym_static] = ACTIONS(721), - [anon_sym_with] = ACTIONS(721), - [anon_sym_package] = ACTIONS(721), - [anon_sym_import] = ACTIONS(721), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_public] = ACTIONS(721), - [anon_sym_protected] = ACTIONS(721), - [anon_sym_private] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(721), - [anon_sym_strictfp] = ACTIONS(721), - [anon_sym_native] = ACTIONS(721), - [anon_sym_transient] = ACTIONS(721), - [anon_sym_volatile] = ACTIONS(721), - [anon_sym_sealed] = ACTIONS(721), - [anon_sym_non_DASHsealed] = ACTIONS(719), - [anon_sym_record] = ACTIONS(721), - [anon_sym_ATinterface] = ACTIONS(719), - [anon_sym_interface] = ACTIONS(721), - [anon_sym_byte] = ACTIONS(721), - [anon_sym_short] = ACTIONS(721), - [anon_sym_int] = ACTIONS(721), - [anon_sym_long] = ACTIONS(721), - [anon_sym_char] = ACTIONS(721), - [anon_sym_float] = ACTIONS(721), - [anon_sym_double] = ACTIONS(721), - [sym_boolean_type] = ACTIONS(721), - [sym_void_type] = ACTIONS(721), - [sym_this] = ACTIONS(721), - [sym_super] = ACTIONS(721), + [STATE(211)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(619), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym_block] = STATE(582), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(723), - [sym_identifier] = ACTIONS(725), - [sym_decimal_integer_literal] = ACTIONS(725), - [sym_hex_integer_literal] = ACTIONS(725), - [sym_octal_integer_literal] = ACTIONS(725), - [sym_binary_integer_literal] = ACTIONS(723), - [sym_decimal_floating_point_literal] = ACTIONS(723), - [sym_hex_floating_point_literal] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_character_literal] = ACTIONS(723), - [anon_sym_DQUOTE] = ACTIONS(725), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(723), - [anon_sym_RBRACE] = ACTIONS(723), - [sym_null_literal] = ACTIONS(725), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_LT] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(725), - [anon_sym_final] = ACTIONS(725), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_PLUS_PLUS] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(723), - [anon_sym_new] = ACTIONS(725), - [anon_sym_class] = ACTIONS(725), - [anon_sym_switch] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(725), - [anon_sym_SEMI] = ACTIONS(723), - [anon_sym_assert] = ACTIONS(725), - [anon_sym_do] = ACTIONS(725), - [anon_sym_while] = ACTIONS(725), - [anon_sym_break] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(725), - [anon_sym_return] = ACTIONS(725), - [anon_sym_yield] = ACTIONS(725), - [anon_sym_synchronized] = ACTIONS(725), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(725), - [anon_sym_if] = ACTIONS(725), - [anon_sym_else] = ACTIONS(725), - [anon_sym_for] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(725), - [anon_sym_open] = ACTIONS(725), - [anon_sym_module] = ACTIONS(725), - [anon_sym_static] = ACTIONS(725), - [anon_sym_with] = ACTIONS(725), - [anon_sym_package] = ACTIONS(725), - [anon_sym_import] = ACTIONS(725), - [anon_sym_enum] = ACTIONS(725), - [anon_sym_public] = ACTIONS(725), - [anon_sym_protected] = ACTIONS(725), - [anon_sym_private] = ACTIONS(725), - [anon_sym_abstract] = ACTIONS(725), - [anon_sym_strictfp] = ACTIONS(725), - [anon_sym_native] = ACTIONS(725), - [anon_sym_transient] = ACTIONS(725), - [anon_sym_volatile] = ACTIONS(725), - [anon_sym_sealed] = ACTIONS(725), - [anon_sym_non_DASHsealed] = ACTIONS(723), - [anon_sym_record] = ACTIONS(725), - [anon_sym_ATinterface] = ACTIONS(723), - [anon_sym_interface] = ACTIONS(725), - [anon_sym_byte] = ACTIONS(725), - [anon_sym_short] = ACTIONS(725), - [anon_sym_int] = ACTIONS(725), - [anon_sym_long] = ACTIONS(725), - [anon_sym_char] = ACTIONS(725), - [anon_sym_float] = ACTIONS(725), - [anon_sym_double] = ACTIONS(725), - [sym_boolean_type] = ACTIONS(725), - [sym_void_type] = ACTIONS(725), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), + [STATE(212)] = { + [ts_builtin_sym_end] = ACTIONS(797), + [sym_identifier] = ACTIONS(799), + [sym_decimal_integer_literal] = ACTIONS(799), + [sym_hex_integer_literal] = ACTIONS(799), + [sym_octal_integer_literal] = ACTIONS(799), + [sym_binary_integer_literal] = ACTIONS(797), + [sym_decimal_floating_point_literal] = ACTIONS(797), + [sym_hex_floating_point_literal] = ACTIONS(799), + [sym_true] = ACTIONS(799), + [sym_false] = ACTIONS(799), + [sym_character_literal] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(799), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(797), + [anon_sym_RBRACE] = ACTIONS(797), + [sym_null_literal] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(797), + [anon_sym_LT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(799), + [anon_sym_DASH] = ACTIONS(799), + [anon_sym_final] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(797), + [anon_sym_TILDE] = ACTIONS(797), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_new] = ACTIONS(799), + [anon_sym_class] = ACTIONS(799), + [anon_sym_switch] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_case] = ACTIONS(799), + [anon_sym_default] = ACTIONS(799), + [anon_sym_SEMI] = ACTIONS(797), + [anon_sym_assert] = ACTIONS(799), + [anon_sym_do] = ACTIONS(799), + [anon_sym_while] = ACTIONS(799), + [anon_sym_break] = ACTIONS(799), + [anon_sym_continue] = ACTIONS(799), + [anon_sym_return] = ACTIONS(799), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_synchronized] = ACTIONS(799), + [anon_sym_throw] = ACTIONS(799), + [anon_sym_try] = ACTIONS(799), + [anon_sym_if] = ACTIONS(799), + [anon_sym_else] = ACTIONS(799), + [anon_sym_for] = ACTIONS(799), + [anon_sym_AT] = ACTIONS(799), + [anon_sym_open] = ACTIONS(799), + [anon_sym_module] = ACTIONS(799), + [anon_sym_static] = ACTIONS(799), + [anon_sym_package] = ACTIONS(799), + [anon_sym_import] = ACTIONS(799), + [anon_sym_enum] = ACTIONS(799), + [anon_sym_public] = ACTIONS(799), + [anon_sym_protected] = ACTIONS(799), + [anon_sym_private] = ACTIONS(799), + [anon_sym_abstract] = ACTIONS(799), + [anon_sym_strictfp] = ACTIONS(799), + [anon_sym_native] = ACTIONS(799), + [anon_sym_transient] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(799), + [anon_sym_sealed] = ACTIONS(799), + [anon_sym_non_DASHsealed] = ACTIONS(797), + [anon_sym_record] = ACTIONS(799), + [anon_sym_ATinterface] = ACTIONS(797), + [anon_sym_interface] = ACTIONS(799), + [anon_sym_byte] = ACTIONS(799), + [anon_sym_short] = ACTIONS(799), + [anon_sym_int] = ACTIONS(799), + [anon_sym_long] = ACTIONS(799), + [anon_sym_char] = ACTIONS(799), + [anon_sym_float] = ACTIONS(799), + [anon_sym_double] = ACTIONS(799), + [sym_boolean_type] = ACTIONS(799), + [sym_void_type] = ACTIONS(799), + [sym_this] = ACTIONS(799), + [sym_super] = ACTIONS(799), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(727), - [sym_identifier] = ACTIONS(729), - [sym_decimal_integer_literal] = ACTIONS(729), - [sym_hex_integer_literal] = ACTIONS(729), - [sym_octal_integer_literal] = ACTIONS(729), - [sym_binary_integer_literal] = ACTIONS(727), - [sym_decimal_floating_point_literal] = ACTIONS(727), - [sym_hex_floating_point_literal] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_character_literal] = ACTIONS(727), - [anon_sym_DQUOTE] = ACTIONS(729), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(727), - [sym_null_literal] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_LT] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_final] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_new] = ACTIONS(729), - [anon_sym_class] = ACTIONS(729), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_case] = ACTIONS(729), - [anon_sym_default] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(727), - [anon_sym_assert] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_yield] = ACTIONS(729), - [anon_sym_synchronized] = ACTIONS(729), - [anon_sym_throw] = ACTIONS(729), - [anon_sym_try] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_open] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_static] = ACTIONS(729), - [anon_sym_with] = ACTIONS(729), - [anon_sym_package] = ACTIONS(729), - [anon_sym_import] = ACTIONS(729), - [anon_sym_enum] = ACTIONS(729), - [anon_sym_public] = ACTIONS(729), - [anon_sym_protected] = ACTIONS(729), - [anon_sym_private] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(729), - [anon_sym_strictfp] = ACTIONS(729), - [anon_sym_native] = ACTIONS(729), - [anon_sym_transient] = ACTIONS(729), - [anon_sym_volatile] = ACTIONS(729), - [anon_sym_sealed] = ACTIONS(729), - [anon_sym_non_DASHsealed] = ACTIONS(727), - [anon_sym_record] = ACTIONS(729), - [anon_sym_ATinterface] = ACTIONS(727), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_byte] = ACTIONS(729), - [anon_sym_short] = ACTIONS(729), - [anon_sym_int] = ACTIONS(729), - [anon_sym_long] = ACTIONS(729), - [anon_sym_char] = ACTIONS(729), - [anon_sym_float] = ACTIONS(729), - [anon_sym_double] = ACTIONS(729), - [sym_boolean_type] = ACTIONS(729), - [sym_void_type] = ACTIONS(729), - [sym_this] = ACTIONS(729), - [sym_super] = ACTIONS(729), + [STATE(213)] = { + [ts_builtin_sym_end] = ACTIONS(801), + [sym_identifier] = ACTIONS(803), + [sym_decimal_integer_literal] = ACTIONS(803), + [sym_hex_integer_literal] = ACTIONS(803), + [sym_octal_integer_literal] = ACTIONS(803), + [sym_binary_integer_literal] = ACTIONS(801), + [sym_decimal_floating_point_literal] = ACTIONS(801), + [sym_hex_floating_point_literal] = ACTIONS(803), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), + [sym_character_literal] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(803), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [sym_null_literal] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_LT] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(803), + [anon_sym_DASH] = ACTIONS(803), + [anon_sym_final] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_TILDE] = ACTIONS(801), + [anon_sym_PLUS_PLUS] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_new] = ACTIONS(803), + [anon_sym_class] = ACTIONS(803), + [anon_sym_switch] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_case] = ACTIONS(803), + [anon_sym_default] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_assert] = ACTIONS(803), + [anon_sym_do] = ACTIONS(803), + [anon_sym_while] = ACTIONS(803), + [anon_sym_break] = ACTIONS(803), + [anon_sym_continue] = ACTIONS(803), + [anon_sym_return] = ACTIONS(803), + [anon_sym_yield] = ACTIONS(803), + [anon_sym_synchronized] = ACTIONS(803), + [anon_sym_throw] = ACTIONS(803), + [anon_sym_try] = ACTIONS(803), + [anon_sym_if] = ACTIONS(803), + [anon_sym_else] = ACTIONS(803), + [anon_sym_for] = ACTIONS(803), + [anon_sym_AT] = ACTIONS(803), + [anon_sym_open] = ACTIONS(803), + [anon_sym_module] = ACTIONS(803), + [anon_sym_static] = ACTIONS(803), + [anon_sym_package] = ACTIONS(803), + [anon_sym_import] = ACTIONS(803), + [anon_sym_enum] = ACTIONS(803), + [anon_sym_public] = ACTIONS(803), + [anon_sym_protected] = ACTIONS(803), + [anon_sym_private] = ACTIONS(803), + [anon_sym_abstract] = ACTIONS(803), + [anon_sym_strictfp] = ACTIONS(803), + [anon_sym_native] = ACTIONS(803), + [anon_sym_transient] = ACTIONS(803), + [anon_sym_volatile] = ACTIONS(803), + [anon_sym_sealed] = ACTIONS(803), + [anon_sym_non_DASHsealed] = ACTIONS(801), + [anon_sym_record] = ACTIONS(803), + [anon_sym_ATinterface] = ACTIONS(801), + [anon_sym_interface] = ACTIONS(803), + [anon_sym_byte] = ACTIONS(803), + [anon_sym_short] = ACTIONS(803), + [anon_sym_int] = ACTIONS(803), + [anon_sym_long] = ACTIONS(803), + [anon_sym_char] = ACTIONS(803), + [anon_sym_float] = ACTIONS(803), + [anon_sym_double] = ACTIONS(803), + [sym_boolean_type] = ACTIONS(803), + [sym_void_type] = ACTIONS(803), + [sym_this] = ACTIONS(803), + [sym_super] = ACTIONS(803), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(731), - [sym_identifier] = ACTIONS(733), - [sym_decimal_integer_literal] = ACTIONS(733), - [sym_hex_integer_literal] = ACTIONS(733), - [sym_octal_integer_literal] = ACTIONS(733), - [sym_binary_integer_literal] = ACTIONS(731), - [sym_decimal_floating_point_literal] = ACTIONS(731), - [sym_hex_floating_point_literal] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_character_literal] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(733), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(731), - [anon_sym_RBRACE] = ACTIONS(731), - [sym_null_literal] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_final] = ACTIONS(733), - [anon_sym_BANG] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_PLUS_PLUS] = ACTIONS(731), - [anon_sym_DASH_DASH] = ACTIONS(731), - [anon_sym_new] = ACTIONS(733), - [anon_sym_class] = ACTIONS(733), - [anon_sym_switch] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_case] = ACTIONS(733), - [anon_sym_default] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_do] = ACTIONS(733), - [anon_sym_while] = ACTIONS(733), - [anon_sym_break] = ACTIONS(733), - [anon_sym_continue] = ACTIONS(733), - [anon_sym_return] = ACTIONS(733), - [anon_sym_yield] = ACTIONS(733), - [anon_sym_synchronized] = ACTIONS(733), - [anon_sym_throw] = ACTIONS(733), - [anon_sym_try] = ACTIONS(733), - [anon_sym_if] = ACTIONS(733), - [anon_sym_else] = ACTIONS(733), - [anon_sym_for] = ACTIONS(733), - [anon_sym_AT] = ACTIONS(733), - [anon_sym_open] = ACTIONS(733), - [anon_sym_module] = ACTIONS(733), - [anon_sym_static] = ACTIONS(733), - [anon_sym_with] = ACTIONS(733), - [anon_sym_package] = ACTIONS(733), - [anon_sym_import] = ACTIONS(733), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_public] = ACTIONS(733), - [anon_sym_protected] = ACTIONS(733), - [anon_sym_private] = ACTIONS(733), - [anon_sym_abstract] = ACTIONS(733), - [anon_sym_strictfp] = ACTIONS(733), - [anon_sym_native] = ACTIONS(733), - [anon_sym_transient] = ACTIONS(733), - [anon_sym_volatile] = ACTIONS(733), - [anon_sym_sealed] = ACTIONS(733), - [anon_sym_non_DASHsealed] = ACTIONS(731), - [anon_sym_record] = ACTIONS(733), - [anon_sym_ATinterface] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(733), - [anon_sym_byte] = ACTIONS(733), - [anon_sym_short] = ACTIONS(733), - [anon_sym_int] = ACTIONS(733), - [anon_sym_long] = ACTIONS(733), - [anon_sym_char] = ACTIONS(733), - [anon_sym_float] = ACTIONS(733), - [anon_sym_double] = ACTIONS(733), - [sym_boolean_type] = ACTIONS(733), - [sym_void_type] = ACTIONS(733), - [sym_this] = ACTIONS(733), - [sym_super] = ACTIONS(733), + [STATE(214)] = { + [ts_builtin_sym_end] = ACTIONS(805), + [sym_identifier] = ACTIONS(807), + [sym_decimal_integer_literal] = ACTIONS(807), + [sym_hex_integer_literal] = ACTIONS(807), + [sym_octal_integer_literal] = ACTIONS(807), + [sym_binary_integer_literal] = ACTIONS(805), + [sym_decimal_floating_point_literal] = ACTIONS(805), + [sym_hex_floating_point_literal] = ACTIONS(807), + [sym_true] = ACTIONS(807), + [sym_false] = ACTIONS(807), + [sym_character_literal] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(805), + [anon_sym_RBRACE] = ACTIONS(805), + [sym_null_literal] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_final] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_DASH_DASH] = ACTIONS(805), + [anon_sym_new] = ACTIONS(807), + [anon_sym_class] = ACTIONS(807), + [anon_sym_switch] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_case] = ACTIONS(807), + [anon_sym_default] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(805), + [anon_sym_assert] = ACTIONS(807), + [anon_sym_do] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_yield] = ACTIONS(807), + [anon_sym_synchronized] = ACTIONS(807), + [anon_sym_throw] = ACTIONS(807), + [anon_sym_try] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_else] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(807), + [anon_sym_open] = ACTIONS(807), + [anon_sym_module] = ACTIONS(807), + [anon_sym_static] = ACTIONS(807), + [anon_sym_package] = ACTIONS(807), + [anon_sym_import] = ACTIONS(807), + [anon_sym_enum] = ACTIONS(807), + [anon_sym_public] = ACTIONS(807), + [anon_sym_protected] = ACTIONS(807), + [anon_sym_private] = ACTIONS(807), + [anon_sym_abstract] = ACTIONS(807), + [anon_sym_strictfp] = ACTIONS(807), + [anon_sym_native] = ACTIONS(807), + [anon_sym_transient] = ACTIONS(807), + [anon_sym_volatile] = ACTIONS(807), + [anon_sym_sealed] = ACTIONS(807), + [anon_sym_non_DASHsealed] = ACTIONS(805), + [anon_sym_record] = ACTIONS(807), + [anon_sym_ATinterface] = ACTIONS(805), + [anon_sym_interface] = ACTIONS(807), + [anon_sym_byte] = ACTIONS(807), + [anon_sym_short] = ACTIONS(807), + [anon_sym_int] = ACTIONS(807), + [anon_sym_long] = ACTIONS(807), + [anon_sym_char] = ACTIONS(807), + [anon_sym_float] = ACTIONS(807), + [anon_sym_double] = ACTIONS(807), + [sym_boolean_type] = ACTIONS(807), + [sym_void_type] = ACTIONS(807), + [sym_this] = ACTIONS(807), + [sym_super] = ACTIONS(807), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(735), - [sym_identifier] = ACTIONS(737), - [sym_decimal_integer_literal] = ACTIONS(737), - [sym_hex_integer_literal] = ACTIONS(737), - [sym_octal_integer_literal] = ACTIONS(737), - [sym_binary_integer_literal] = ACTIONS(735), - [sym_decimal_floating_point_literal] = ACTIONS(735), - [sym_hex_floating_point_literal] = ACTIONS(737), - [sym_true] = ACTIONS(737), - [sym_false] = ACTIONS(737), - [sym_character_literal] = ACTIONS(735), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [sym_null_literal] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_final] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_new] = ACTIONS(737), - [anon_sym_class] = ACTIONS(737), - [anon_sym_switch] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_case] = ACTIONS(737), - [anon_sym_default] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_assert] = ACTIONS(737), - [anon_sym_do] = ACTIONS(737), - [anon_sym_while] = ACTIONS(737), - [anon_sym_break] = ACTIONS(737), - [anon_sym_continue] = ACTIONS(737), - [anon_sym_return] = ACTIONS(737), - [anon_sym_yield] = ACTIONS(737), - [anon_sym_synchronized] = ACTIONS(737), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_try] = ACTIONS(737), - [anon_sym_if] = ACTIONS(737), - [anon_sym_else] = ACTIONS(737), - [anon_sym_for] = ACTIONS(737), - [anon_sym_AT] = ACTIONS(737), - [anon_sym_open] = ACTIONS(737), - [anon_sym_module] = ACTIONS(737), - [anon_sym_static] = ACTIONS(737), - [anon_sym_with] = ACTIONS(737), - [anon_sym_package] = ACTIONS(737), - [anon_sym_import] = ACTIONS(737), - [anon_sym_enum] = ACTIONS(737), - [anon_sym_public] = ACTIONS(737), - [anon_sym_protected] = ACTIONS(737), - [anon_sym_private] = ACTIONS(737), - [anon_sym_abstract] = ACTIONS(737), - [anon_sym_strictfp] = ACTIONS(737), - [anon_sym_native] = ACTIONS(737), - [anon_sym_transient] = ACTIONS(737), - [anon_sym_volatile] = ACTIONS(737), - [anon_sym_sealed] = ACTIONS(737), - [anon_sym_non_DASHsealed] = ACTIONS(735), - [anon_sym_record] = ACTIONS(737), - [anon_sym_ATinterface] = ACTIONS(735), - [anon_sym_interface] = ACTIONS(737), - [anon_sym_byte] = ACTIONS(737), - [anon_sym_short] = ACTIONS(737), - [anon_sym_int] = ACTIONS(737), - [anon_sym_long] = ACTIONS(737), - [anon_sym_char] = ACTIONS(737), - [anon_sym_float] = ACTIONS(737), - [anon_sym_double] = ACTIONS(737), - [sym_boolean_type] = ACTIONS(737), - [sym_void_type] = ACTIONS(737), - [sym_this] = ACTIONS(737), - [sym_super] = ACTIONS(737), + [STATE(215)] = { + [ts_builtin_sym_end] = ACTIONS(809), + [sym_identifier] = ACTIONS(811), + [sym_decimal_integer_literal] = ACTIONS(811), + [sym_hex_integer_literal] = ACTIONS(811), + [sym_octal_integer_literal] = ACTIONS(811), + [sym_binary_integer_literal] = ACTIONS(809), + [sym_decimal_floating_point_literal] = ACTIONS(809), + [sym_hex_floating_point_literal] = ACTIONS(811), + [sym_true] = ACTIONS(811), + [sym_false] = ACTIONS(811), + [sym_character_literal] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(811), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [sym_null_literal] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_final] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_new] = ACTIONS(811), + [anon_sym_class] = ACTIONS(811), + [anon_sym_switch] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_default] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_assert] = ACTIONS(811), + [anon_sym_do] = ACTIONS(811), + [anon_sym_while] = ACTIONS(811), + [anon_sym_break] = ACTIONS(811), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_synchronized] = ACTIONS(811), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_try] = ACTIONS(811), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(811), + [anon_sym_for] = ACTIONS(811), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_open] = ACTIONS(811), + [anon_sym_module] = ACTIONS(811), + [anon_sym_static] = ACTIONS(811), + [anon_sym_package] = ACTIONS(811), + [anon_sym_import] = ACTIONS(811), + [anon_sym_enum] = ACTIONS(811), + [anon_sym_public] = ACTIONS(811), + [anon_sym_protected] = ACTIONS(811), + [anon_sym_private] = ACTIONS(811), + [anon_sym_abstract] = ACTIONS(811), + [anon_sym_strictfp] = ACTIONS(811), + [anon_sym_native] = ACTIONS(811), + [anon_sym_transient] = ACTIONS(811), + [anon_sym_volatile] = ACTIONS(811), + [anon_sym_sealed] = ACTIONS(811), + [anon_sym_non_DASHsealed] = ACTIONS(809), + [anon_sym_record] = ACTIONS(811), + [anon_sym_ATinterface] = ACTIONS(809), + [anon_sym_interface] = ACTIONS(811), + [anon_sym_byte] = ACTIONS(811), + [anon_sym_short] = ACTIONS(811), + [anon_sym_int] = ACTIONS(811), + [anon_sym_long] = ACTIONS(811), + [anon_sym_char] = ACTIONS(811), + [anon_sym_float] = ACTIONS(811), + [anon_sym_double] = ACTIONS(811), + [sym_boolean_type] = ACTIONS(811), + [sym_void_type] = ACTIONS(811), + [sym_this] = ACTIONS(811), + [sym_super] = ACTIONS(811), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(216)] = { + [ts_builtin_sym_end] = ACTIONS(813), + [sym_identifier] = ACTIONS(815), + [sym_decimal_integer_literal] = ACTIONS(815), + [sym_hex_integer_literal] = ACTIONS(815), + [sym_octal_integer_literal] = ACTIONS(815), + [sym_binary_integer_literal] = ACTIONS(813), + [sym_decimal_floating_point_literal] = ACTIONS(813), + [sym_hex_floating_point_literal] = ACTIONS(815), + [sym_true] = ACTIONS(815), + [sym_false] = ACTIONS(815), + [sym_character_literal] = ACTIONS(813), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(813), + [anon_sym_RBRACE] = ACTIONS(813), + [sym_null_literal] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_final] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_DASH_DASH] = ACTIONS(813), + [anon_sym_new] = ACTIONS(815), + [anon_sym_class] = ACTIONS(815), + [anon_sym_switch] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_case] = ACTIONS(815), + [anon_sym_default] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(813), + [anon_sym_assert] = ACTIONS(815), + [anon_sym_do] = ACTIONS(815), + [anon_sym_while] = ACTIONS(815), + [anon_sym_break] = ACTIONS(815), + [anon_sym_continue] = ACTIONS(815), + [anon_sym_return] = ACTIONS(815), + [anon_sym_yield] = ACTIONS(815), + [anon_sym_synchronized] = ACTIONS(815), + [anon_sym_throw] = ACTIONS(815), + [anon_sym_try] = ACTIONS(815), + [anon_sym_if] = ACTIONS(815), + [anon_sym_else] = ACTIONS(815), + [anon_sym_for] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(815), + [anon_sym_open] = ACTIONS(815), + [anon_sym_module] = ACTIONS(815), + [anon_sym_static] = ACTIONS(815), + [anon_sym_package] = ACTIONS(815), + [anon_sym_import] = ACTIONS(815), + [anon_sym_enum] = ACTIONS(815), + [anon_sym_public] = ACTIONS(815), + [anon_sym_protected] = ACTIONS(815), + [anon_sym_private] = ACTIONS(815), + [anon_sym_abstract] = ACTIONS(815), + [anon_sym_strictfp] = ACTIONS(815), + [anon_sym_native] = ACTIONS(815), + [anon_sym_transient] = ACTIONS(815), + [anon_sym_volatile] = ACTIONS(815), + [anon_sym_sealed] = ACTIONS(815), + [anon_sym_non_DASHsealed] = ACTIONS(813), + [anon_sym_record] = ACTIONS(815), + [anon_sym_ATinterface] = ACTIONS(813), + [anon_sym_interface] = ACTIONS(815), + [anon_sym_byte] = ACTIONS(815), + [anon_sym_short] = ACTIONS(815), + [anon_sym_int] = ACTIONS(815), + [anon_sym_long] = ACTIONS(815), + [anon_sym_char] = ACTIONS(815), + [anon_sym_float] = ACTIONS(815), + [anon_sym_double] = ACTIONS(815), + [sym_boolean_type] = ACTIONS(815), + [sym_void_type] = ACTIONS(815), + [sym_this] = ACTIONS(815), + [sym_super] = ACTIONS(815), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(217)] = { + [ts_builtin_sym_end] = ACTIONS(817), + [sym_identifier] = ACTIONS(819), + [sym_decimal_integer_literal] = ACTIONS(819), + [sym_hex_integer_literal] = ACTIONS(819), + [sym_octal_integer_literal] = ACTIONS(819), + [sym_binary_integer_literal] = ACTIONS(817), + [sym_decimal_floating_point_literal] = ACTIONS(817), + [sym_hex_floating_point_literal] = ACTIONS(819), + [sym_true] = ACTIONS(819), + [sym_false] = ACTIONS(819), + [sym_character_literal] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(819), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(817), + [anon_sym_RBRACE] = ACTIONS(817), + [sym_null_literal] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_final] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(817), + [anon_sym_TILDE] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_DASH_DASH] = ACTIONS(817), + [anon_sym_new] = ACTIONS(819), + [anon_sym_class] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(817), + [anon_sym_case] = ACTIONS(819), + [anon_sym_default] = ACTIONS(819), + [anon_sym_SEMI] = ACTIONS(817), + [anon_sym_assert] = ACTIONS(819), + [anon_sym_do] = ACTIONS(819), + [anon_sym_while] = ACTIONS(819), + [anon_sym_break] = ACTIONS(819), + [anon_sym_continue] = ACTIONS(819), + [anon_sym_return] = ACTIONS(819), + [anon_sym_yield] = ACTIONS(819), + [anon_sym_synchronized] = ACTIONS(819), + [anon_sym_throw] = ACTIONS(819), + [anon_sym_try] = ACTIONS(819), + [anon_sym_if] = ACTIONS(819), + [anon_sym_else] = ACTIONS(819), + [anon_sym_for] = ACTIONS(819), + [anon_sym_AT] = ACTIONS(819), + [anon_sym_open] = ACTIONS(819), + [anon_sym_module] = ACTIONS(819), + [anon_sym_static] = ACTIONS(819), + [anon_sym_package] = ACTIONS(819), + [anon_sym_import] = ACTIONS(819), + [anon_sym_enum] = ACTIONS(819), + [anon_sym_public] = ACTIONS(819), + [anon_sym_protected] = ACTIONS(819), + [anon_sym_private] = ACTIONS(819), + [anon_sym_abstract] = ACTIONS(819), + [anon_sym_strictfp] = ACTIONS(819), + [anon_sym_native] = ACTIONS(819), + [anon_sym_transient] = ACTIONS(819), + [anon_sym_volatile] = ACTIONS(819), + [anon_sym_sealed] = ACTIONS(819), + [anon_sym_non_DASHsealed] = ACTIONS(817), + [anon_sym_record] = ACTIONS(819), + [anon_sym_ATinterface] = ACTIONS(817), + [anon_sym_interface] = ACTIONS(819), + [anon_sym_byte] = ACTIONS(819), + [anon_sym_short] = ACTIONS(819), + [anon_sym_int] = ACTIONS(819), + [anon_sym_long] = ACTIONS(819), + [anon_sym_char] = ACTIONS(819), + [anon_sym_float] = ACTIONS(819), + [anon_sym_double] = ACTIONS(819), + [sym_boolean_type] = ACTIONS(819), + [sym_void_type] = ACTIONS(819), + [sym_this] = ACTIONS(819), + [sym_super] = ACTIONS(819), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(218)] = { + [ts_builtin_sym_end] = ACTIONS(821), + [sym_identifier] = ACTIONS(823), + [sym_decimal_integer_literal] = ACTIONS(823), + [sym_hex_integer_literal] = ACTIONS(823), + [sym_octal_integer_literal] = ACTIONS(823), + [sym_binary_integer_literal] = ACTIONS(821), + [sym_decimal_floating_point_literal] = ACTIONS(821), + [sym_hex_floating_point_literal] = ACTIONS(823), + [sym_true] = ACTIONS(823), + [sym_false] = ACTIONS(823), + [sym_character_literal] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(823), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(821), + [anon_sym_RBRACE] = ACTIONS(821), + [sym_null_literal] = ACTIONS(823), + [anon_sym_LPAREN] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_final] = ACTIONS(823), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_new] = ACTIONS(823), + [anon_sym_class] = ACTIONS(823), + [anon_sym_switch] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_case] = ACTIONS(823), + [anon_sym_default] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(821), + [anon_sym_assert] = ACTIONS(823), + [anon_sym_do] = ACTIONS(823), + [anon_sym_while] = ACTIONS(823), + [anon_sym_break] = ACTIONS(823), + [anon_sym_continue] = ACTIONS(823), + [anon_sym_return] = ACTIONS(823), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_synchronized] = ACTIONS(823), + [anon_sym_throw] = ACTIONS(823), + [anon_sym_try] = ACTIONS(823), + [anon_sym_if] = ACTIONS(823), + [anon_sym_else] = ACTIONS(823), + [anon_sym_for] = ACTIONS(823), + [anon_sym_AT] = ACTIONS(823), + [anon_sym_open] = ACTIONS(823), + [anon_sym_module] = ACTIONS(823), + [anon_sym_static] = ACTIONS(823), + [anon_sym_package] = ACTIONS(823), + [anon_sym_import] = ACTIONS(823), + [anon_sym_enum] = ACTIONS(823), + [anon_sym_public] = ACTIONS(823), + [anon_sym_protected] = ACTIONS(823), + [anon_sym_private] = ACTIONS(823), + [anon_sym_abstract] = ACTIONS(823), + [anon_sym_strictfp] = ACTIONS(823), + [anon_sym_native] = ACTIONS(823), + [anon_sym_transient] = ACTIONS(823), + [anon_sym_volatile] = ACTIONS(823), + [anon_sym_sealed] = ACTIONS(823), + [anon_sym_non_DASHsealed] = ACTIONS(821), + [anon_sym_record] = ACTIONS(823), + [anon_sym_ATinterface] = ACTIONS(821), + [anon_sym_interface] = ACTIONS(823), + [anon_sym_byte] = ACTIONS(823), + [anon_sym_short] = ACTIONS(823), + [anon_sym_int] = ACTIONS(823), + [anon_sym_long] = ACTIONS(823), + [anon_sym_char] = ACTIONS(823), + [anon_sym_float] = ACTIONS(823), + [anon_sym_double] = ACTIONS(823), + [sym_boolean_type] = ACTIONS(823), + [sym_void_type] = ACTIONS(823), + [sym_this] = ACTIONS(823), + [sym_super] = ACTIONS(823), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(219)] = { + [ts_builtin_sym_end] = ACTIONS(825), + [sym_identifier] = ACTIONS(827), + [sym_decimal_integer_literal] = ACTIONS(827), + [sym_hex_integer_literal] = ACTIONS(827), + [sym_octal_integer_literal] = ACTIONS(827), + [sym_binary_integer_literal] = ACTIONS(825), + [sym_decimal_floating_point_literal] = ACTIONS(825), + [sym_hex_floating_point_literal] = ACTIONS(827), + [sym_true] = ACTIONS(827), + [sym_false] = ACTIONS(827), + [sym_character_literal] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(827), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(825), + [sym_null_literal] = ACTIONS(827), + [anon_sym_LPAREN] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_final] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_new] = ACTIONS(827), + [anon_sym_class] = ACTIONS(827), + [anon_sym_switch] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_case] = ACTIONS(827), + [anon_sym_default] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(825), + [anon_sym_assert] = ACTIONS(827), + [anon_sym_do] = ACTIONS(827), + [anon_sym_while] = ACTIONS(827), + [anon_sym_break] = ACTIONS(827), + [anon_sym_continue] = ACTIONS(827), + [anon_sym_return] = ACTIONS(827), + [anon_sym_yield] = ACTIONS(827), + [anon_sym_synchronized] = ACTIONS(827), + [anon_sym_throw] = ACTIONS(827), + [anon_sym_try] = ACTIONS(827), + [anon_sym_if] = ACTIONS(827), + [anon_sym_else] = ACTIONS(827), + [anon_sym_for] = ACTIONS(827), + [anon_sym_AT] = ACTIONS(827), + [anon_sym_open] = ACTIONS(827), + [anon_sym_module] = ACTIONS(827), + [anon_sym_static] = ACTIONS(827), + [anon_sym_package] = ACTIONS(827), + [anon_sym_import] = ACTIONS(827), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_public] = ACTIONS(827), + [anon_sym_protected] = ACTIONS(827), + [anon_sym_private] = ACTIONS(827), + [anon_sym_abstract] = ACTIONS(827), + [anon_sym_strictfp] = ACTIONS(827), + [anon_sym_native] = ACTIONS(827), + [anon_sym_transient] = ACTIONS(827), + [anon_sym_volatile] = ACTIONS(827), + [anon_sym_sealed] = ACTIONS(827), + [anon_sym_non_DASHsealed] = ACTIONS(825), + [anon_sym_record] = ACTIONS(827), + [anon_sym_ATinterface] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(827), + [anon_sym_byte] = ACTIONS(827), + [anon_sym_short] = ACTIONS(827), + [anon_sym_int] = ACTIONS(827), + [anon_sym_long] = ACTIONS(827), + [anon_sym_char] = ACTIONS(827), + [anon_sym_float] = ACTIONS(827), + [anon_sym_double] = ACTIONS(827), + [sym_boolean_type] = ACTIONS(827), + [sym_void_type] = ACTIONS(827), + [sym_this] = ACTIONS(827), + [sym_super] = ACTIONS(827), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(220)] = { + [ts_builtin_sym_end] = ACTIONS(829), + [sym_identifier] = ACTIONS(831), + [sym_decimal_integer_literal] = ACTIONS(831), + [sym_hex_integer_literal] = ACTIONS(831), + [sym_octal_integer_literal] = ACTIONS(831), + [sym_binary_integer_literal] = ACTIONS(829), + [sym_decimal_floating_point_literal] = ACTIONS(829), + [sym_hex_floating_point_literal] = ACTIONS(831), + [sym_true] = ACTIONS(831), + [sym_false] = ACTIONS(831), + [sym_character_literal] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(829), + [sym_null_literal] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_final] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(829), + [anon_sym_TILDE] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(829), + [anon_sym_new] = ACTIONS(831), + [anon_sym_class] = ACTIONS(831), + [anon_sym_switch] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_case] = ACTIONS(831), + [anon_sym_default] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_assert] = ACTIONS(831), + [anon_sym_do] = ACTIONS(831), + [anon_sym_while] = ACTIONS(831), + [anon_sym_break] = ACTIONS(831), + [anon_sym_continue] = ACTIONS(831), + [anon_sym_return] = ACTIONS(831), + [anon_sym_yield] = ACTIONS(831), + [anon_sym_synchronized] = ACTIONS(831), + [anon_sym_throw] = ACTIONS(831), + [anon_sym_try] = ACTIONS(831), + [anon_sym_if] = ACTIONS(831), + [anon_sym_else] = ACTIONS(831), + [anon_sym_for] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [anon_sym_open] = ACTIONS(831), + [anon_sym_module] = ACTIONS(831), + [anon_sym_static] = ACTIONS(831), + [anon_sym_package] = ACTIONS(831), + [anon_sym_import] = ACTIONS(831), + [anon_sym_enum] = ACTIONS(831), + [anon_sym_public] = ACTIONS(831), + [anon_sym_protected] = ACTIONS(831), + [anon_sym_private] = ACTIONS(831), + [anon_sym_abstract] = ACTIONS(831), + [anon_sym_strictfp] = ACTIONS(831), + [anon_sym_native] = ACTIONS(831), + [anon_sym_transient] = ACTIONS(831), + [anon_sym_volatile] = ACTIONS(831), + [anon_sym_sealed] = ACTIONS(831), + [anon_sym_non_DASHsealed] = ACTIONS(829), + [anon_sym_record] = ACTIONS(831), + [anon_sym_ATinterface] = ACTIONS(829), + [anon_sym_interface] = ACTIONS(831), + [anon_sym_byte] = ACTIONS(831), + [anon_sym_short] = ACTIONS(831), + [anon_sym_int] = ACTIONS(831), + [anon_sym_long] = ACTIONS(831), + [anon_sym_char] = ACTIONS(831), + [anon_sym_float] = ACTIONS(831), + [anon_sym_double] = ACTIONS(831), + [sym_boolean_type] = ACTIONS(831), + [sym_void_type] = ACTIONS(831), + [sym_this] = ACTIONS(831), + [sym_super] = ACTIONS(831), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(221)] = { + [ts_builtin_sym_end] = ACTIONS(833), + [sym_identifier] = ACTIONS(835), + [sym_decimal_integer_literal] = ACTIONS(835), + [sym_hex_integer_literal] = ACTIONS(835), + [sym_octal_integer_literal] = ACTIONS(835), + [sym_binary_integer_literal] = ACTIONS(833), + [sym_decimal_floating_point_literal] = ACTIONS(833), + [sym_hex_floating_point_literal] = ACTIONS(835), + [sym_true] = ACTIONS(835), + [sym_false] = ACTIONS(835), + [sym_character_literal] = ACTIONS(833), + [anon_sym_DQUOTE] = ACTIONS(835), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(833), + [sym_null_literal] = ACTIONS(835), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_LT] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_final] = ACTIONS(835), + [anon_sym_BANG] = ACTIONS(833), + [anon_sym_TILDE] = ACTIONS(833), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_new] = ACTIONS(835), + [anon_sym_class] = ACTIONS(835), + [anon_sym_switch] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_case] = ACTIONS(835), + [anon_sym_default] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(833), + [anon_sym_assert] = ACTIONS(835), + [anon_sym_do] = ACTIONS(835), + [anon_sym_while] = ACTIONS(835), + [anon_sym_break] = ACTIONS(835), + [anon_sym_continue] = ACTIONS(835), + [anon_sym_return] = ACTIONS(835), + [anon_sym_yield] = ACTIONS(835), + [anon_sym_synchronized] = ACTIONS(835), + [anon_sym_throw] = ACTIONS(835), + [anon_sym_try] = ACTIONS(835), + [anon_sym_if] = ACTIONS(835), + [anon_sym_else] = ACTIONS(835), + [anon_sym_for] = ACTIONS(835), + [anon_sym_AT] = ACTIONS(835), + [anon_sym_open] = ACTIONS(835), + [anon_sym_module] = ACTIONS(835), + [anon_sym_static] = ACTIONS(835), + [anon_sym_package] = ACTIONS(835), + [anon_sym_import] = ACTIONS(835), + [anon_sym_enum] = ACTIONS(835), + [anon_sym_public] = ACTIONS(835), + [anon_sym_protected] = ACTIONS(835), + [anon_sym_private] = ACTIONS(835), + [anon_sym_abstract] = ACTIONS(835), + [anon_sym_strictfp] = ACTIONS(835), + [anon_sym_native] = ACTIONS(835), + [anon_sym_transient] = ACTIONS(835), + [anon_sym_volatile] = ACTIONS(835), + [anon_sym_sealed] = ACTIONS(835), + [anon_sym_non_DASHsealed] = ACTIONS(833), + [anon_sym_record] = ACTIONS(835), + [anon_sym_ATinterface] = ACTIONS(833), + [anon_sym_interface] = ACTIONS(835), + [anon_sym_byte] = ACTIONS(835), + [anon_sym_short] = ACTIONS(835), + [anon_sym_int] = ACTIONS(835), + [anon_sym_long] = ACTIONS(835), + [anon_sym_char] = ACTIONS(835), + [anon_sym_float] = ACTIONS(835), + [anon_sym_double] = ACTIONS(835), + [sym_boolean_type] = ACTIONS(835), + [sym_void_type] = ACTIONS(835), + [sym_this] = ACTIONS(835), + [sym_super] = ACTIONS(835), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(222)] = { + [ts_builtin_sym_end] = ACTIONS(442), + [sym_identifier] = ACTIONS(440), + [sym_decimal_integer_literal] = ACTIONS(440), + [sym_hex_integer_literal] = ACTIONS(440), + [sym_octal_integer_literal] = ACTIONS(440), + [sym_binary_integer_literal] = ACTIONS(442), + [sym_decimal_floating_point_literal] = ACTIONS(442), + [sym_hex_floating_point_literal] = ACTIONS(440), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_character_literal] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(440), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [sym_null_literal] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_final] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_new] = ACTIONS(440), + [anon_sym_class] = ACTIONS(440), + [anon_sym_switch] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_case] = ACTIONS(440), + [anon_sym_default] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_assert] = ACTIONS(440), + [anon_sym_do] = ACTIONS(440), + [anon_sym_while] = ACTIONS(440), + [anon_sym_break] = ACTIONS(440), + [anon_sym_continue] = ACTIONS(440), + [anon_sym_return] = ACTIONS(440), + [anon_sym_yield] = ACTIONS(440), + [anon_sym_synchronized] = ACTIONS(440), + [anon_sym_throw] = ACTIONS(440), + [anon_sym_try] = ACTIONS(440), + [anon_sym_if] = ACTIONS(440), + [anon_sym_else] = ACTIONS(440), + [anon_sym_for] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(440), + [anon_sym_open] = ACTIONS(440), + [anon_sym_module] = ACTIONS(440), + [anon_sym_static] = ACTIONS(440), + [anon_sym_package] = ACTIONS(440), + [anon_sym_import] = ACTIONS(440), + [anon_sym_enum] = ACTIONS(440), + [anon_sym_public] = ACTIONS(440), + [anon_sym_protected] = ACTIONS(440), + [anon_sym_private] = ACTIONS(440), + [anon_sym_abstract] = ACTIONS(440), + [anon_sym_strictfp] = ACTIONS(440), + [anon_sym_native] = ACTIONS(440), + [anon_sym_transient] = ACTIONS(440), + [anon_sym_volatile] = ACTIONS(440), + [anon_sym_sealed] = ACTIONS(440), + [anon_sym_non_DASHsealed] = ACTIONS(442), + [anon_sym_record] = ACTIONS(440), + [anon_sym_ATinterface] = ACTIONS(442), + [anon_sym_interface] = ACTIONS(440), + [anon_sym_byte] = ACTIONS(440), + [anon_sym_short] = ACTIONS(440), + [anon_sym_int] = ACTIONS(440), + [anon_sym_long] = ACTIONS(440), + [anon_sym_char] = ACTIONS(440), + [anon_sym_float] = ACTIONS(440), + [anon_sym_double] = ACTIONS(440), + [sym_boolean_type] = ACTIONS(440), + [sym_void_type] = ACTIONS(440), + [sym_this] = ACTIONS(440), + [sym_super] = ACTIONS(440), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(223)] = { + [ts_builtin_sym_end] = ACTIONS(837), + [sym_identifier] = ACTIONS(839), + [sym_decimal_integer_literal] = ACTIONS(839), + [sym_hex_integer_literal] = ACTIONS(839), + [sym_octal_integer_literal] = ACTIONS(839), + [sym_binary_integer_literal] = ACTIONS(837), + [sym_decimal_floating_point_literal] = ACTIONS(837), + [sym_hex_floating_point_literal] = ACTIONS(839), + [sym_true] = ACTIONS(839), + [sym_false] = ACTIONS(839), + [sym_character_literal] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(839), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(837), + [anon_sym_RBRACE] = ACTIONS(837), + [sym_null_literal] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_LT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(839), + [anon_sym_DASH] = ACTIONS(839), + [anon_sym_final] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(837), + [anon_sym_PLUS_PLUS] = ACTIONS(837), + [anon_sym_DASH_DASH] = ACTIONS(837), + [anon_sym_new] = ACTIONS(839), + [anon_sym_class] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_case] = ACTIONS(839), + [anon_sym_default] = ACTIONS(839), + [anon_sym_SEMI] = ACTIONS(837), + [anon_sym_assert] = ACTIONS(839), + [anon_sym_do] = ACTIONS(839), + [anon_sym_while] = ACTIONS(839), + [anon_sym_break] = ACTIONS(839), + [anon_sym_continue] = ACTIONS(839), + [anon_sym_return] = ACTIONS(839), + [anon_sym_yield] = ACTIONS(839), + [anon_sym_synchronized] = ACTIONS(839), + [anon_sym_throw] = ACTIONS(839), + [anon_sym_try] = ACTIONS(839), + [anon_sym_if] = ACTIONS(839), + [anon_sym_else] = ACTIONS(839), + [anon_sym_for] = ACTIONS(839), + [anon_sym_AT] = ACTIONS(839), + [anon_sym_open] = ACTIONS(839), + [anon_sym_module] = ACTIONS(839), + [anon_sym_static] = ACTIONS(839), + [anon_sym_package] = ACTIONS(839), + [anon_sym_import] = ACTIONS(839), + [anon_sym_enum] = ACTIONS(839), + [anon_sym_public] = ACTIONS(839), + [anon_sym_protected] = ACTIONS(839), + [anon_sym_private] = ACTIONS(839), + [anon_sym_abstract] = ACTIONS(839), + [anon_sym_strictfp] = ACTIONS(839), + [anon_sym_native] = ACTIONS(839), + [anon_sym_transient] = ACTIONS(839), + [anon_sym_volatile] = ACTIONS(839), + [anon_sym_sealed] = ACTIONS(839), + [anon_sym_non_DASHsealed] = ACTIONS(837), + [anon_sym_record] = ACTIONS(839), + [anon_sym_ATinterface] = ACTIONS(837), + [anon_sym_interface] = ACTIONS(839), + [anon_sym_byte] = ACTIONS(839), + [anon_sym_short] = ACTIONS(839), + [anon_sym_int] = ACTIONS(839), + [anon_sym_long] = ACTIONS(839), + [anon_sym_char] = ACTIONS(839), + [anon_sym_float] = ACTIONS(839), + [anon_sym_double] = ACTIONS(839), + [sym_boolean_type] = ACTIONS(839), + [sym_void_type] = ACTIONS(839), + [sym_this] = ACTIONS(839), + [sym_super] = ACTIONS(839), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(224)] = { + [ts_builtin_sym_end] = ACTIONS(841), + [sym_identifier] = ACTIONS(843), + [sym_decimal_integer_literal] = ACTIONS(843), + [sym_hex_integer_literal] = ACTIONS(843), + [sym_octal_integer_literal] = ACTIONS(843), + [sym_binary_integer_literal] = ACTIONS(841), + [sym_decimal_floating_point_literal] = ACTIONS(841), + [sym_hex_floating_point_literal] = ACTIONS(843), + [sym_true] = ACTIONS(843), + [sym_false] = ACTIONS(843), + [sym_character_literal] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(841), + [sym_null_literal] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_LT] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_final] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(841), + [anon_sym_TILDE] = ACTIONS(841), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_new] = ACTIONS(843), + [anon_sym_class] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_assert] = ACTIONS(843), + [anon_sym_do] = ACTIONS(843), + [anon_sym_while] = ACTIONS(843), + [anon_sym_break] = ACTIONS(843), + [anon_sym_continue] = ACTIONS(843), + [anon_sym_return] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(843), + [anon_sym_synchronized] = ACTIONS(843), + [anon_sym_throw] = ACTIONS(843), + [anon_sym_try] = ACTIONS(843), + [anon_sym_if] = ACTIONS(843), + [anon_sym_else] = ACTIONS(843), + [anon_sym_for] = ACTIONS(843), + [anon_sym_AT] = ACTIONS(843), + [anon_sym_open] = ACTIONS(843), + [anon_sym_module] = ACTIONS(843), + [anon_sym_static] = ACTIONS(843), + [anon_sym_package] = ACTIONS(843), + [anon_sym_import] = ACTIONS(843), + [anon_sym_enum] = ACTIONS(843), + [anon_sym_public] = ACTIONS(843), + [anon_sym_protected] = ACTIONS(843), + [anon_sym_private] = ACTIONS(843), + [anon_sym_abstract] = ACTIONS(843), + [anon_sym_strictfp] = ACTIONS(843), + [anon_sym_native] = ACTIONS(843), + [anon_sym_transient] = ACTIONS(843), + [anon_sym_volatile] = ACTIONS(843), + [anon_sym_sealed] = ACTIONS(843), + [anon_sym_non_DASHsealed] = ACTIONS(841), + [anon_sym_record] = ACTIONS(843), + [anon_sym_ATinterface] = ACTIONS(841), + [anon_sym_interface] = ACTIONS(843), + [anon_sym_byte] = ACTIONS(843), + [anon_sym_short] = ACTIONS(843), + [anon_sym_int] = ACTIONS(843), + [anon_sym_long] = ACTIONS(843), + [anon_sym_char] = ACTIONS(843), + [anon_sym_float] = ACTIONS(843), + [anon_sym_double] = ACTIONS(843), + [sym_boolean_type] = ACTIONS(843), + [sym_void_type] = ACTIONS(843), + [sym_this] = ACTIONS(843), + [sym_super] = ACTIONS(843), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(225)] = { + [ts_builtin_sym_end] = ACTIONS(845), + [sym_identifier] = ACTIONS(847), + [sym_decimal_integer_literal] = ACTIONS(847), + [sym_hex_integer_literal] = ACTIONS(847), + [sym_octal_integer_literal] = ACTIONS(847), + [sym_binary_integer_literal] = ACTIONS(845), + [sym_decimal_floating_point_literal] = ACTIONS(845), + [sym_hex_floating_point_literal] = ACTIONS(847), + [sym_true] = ACTIONS(847), + [sym_false] = ACTIONS(847), + [sym_character_literal] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(845), + [anon_sym_RBRACE] = ACTIONS(845), + [sym_null_literal] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(845), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_final] = ACTIONS(847), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(845), + [anon_sym_PLUS_PLUS] = ACTIONS(845), + [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_new] = ACTIONS(847), + [anon_sym_class] = ACTIONS(847), + [anon_sym_switch] = ACTIONS(847), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_case] = ACTIONS(847), + [anon_sym_default] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(845), + [anon_sym_assert] = ACTIONS(847), + [anon_sym_do] = ACTIONS(847), + [anon_sym_while] = ACTIONS(847), + [anon_sym_break] = ACTIONS(847), + [anon_sym_continue] = ACTIONS(847), + [anon_sym_return] = ACTIONS(847), + [anon_sym_yield] = ACTIONS(847), + [anon_sym_synchronized] = ACTIONS(847), + [anon_sym_throw] = ACTIONS(847), + [anon_sym_try] = ACTIONS(847), + [anon_sym_if] = ACTIONS(847), + [anon_sym_else] = ACTIONS(847), + [anon_sym_for] = ACTIONS(847), + [anon_sym_AT] = ACTIONS(847), + [anon_sym_open] = ACTIONS(847), + [anon_sym_module] = ACTIONS(847), + [anon_sym_static] = ACTIONS(847), + [anon_sym_package] = ACTIONS(847), + [anon_sym_import] = ACTIONS(847), + [anon_sym_enum] = ACTIONS(847), + [anon_sym_public] = ACTIONS(847), + [anon_sym_protected] = ACTIONS(847), + [anon_sym_private] = ACTIONS(847), + [anon_sym_abstract] = ACTIONS(847), + [anon_sym_strictfp] = ACTIONS(847), + [anon_sym_native] = ACTIONS(847), + [anon_sym_transient] = ACTIONS(847), + [anon_sym_volatile] = ACTIONS(847), + [anon_sym_sealed] = ACTIONS(847), + [anon_sym_non_DASHsealed] = ACTIONS(845), + [anon_sym_record] = ACTIONS(847), + [anon_sym_ATinterface] = ACTIONS(845), + [anon_sym_interface] = ACTIONS(847), + [anon_sym_byte] = ACTIONS(847), + [anon_sym_short] = ACTIONS(847), + [anon_sym_int] = ACTIONS(847), + [anon_sym_long] = ACTIONS(847), + [anon_sym_char] = ACTIONS(847), + [anon_sym_float] = ACTIONS(847), + [anon_sym_double] = ACTIONS(847), + [sym_boolean_type] = ACTIONS(847), + [sym_void_type] = ACTIONS(847), + [sym_this] = ACTIONS(847), + [sym_super] = ACTIONS(847), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(226)] = { + [ts_builtin_sym_end] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [sym_decimal_integer_literal] = ACTIONS(851), + [sym_hex_integer_literal] = ACTIONS(851), + [sym_octal_integer_literal] = ACTIONS(851), + [sym_binary_integer_literal] = ACTIONS(849), + [sym_decimal_floating_point_literal] = ACTIONS(849), + [sym_hex_floating_point_literal] = ACTIONS(851), + [sym_true] = ACTIONS(851), + [sym_false] = ACTIONS(851), + [sym_character_literal] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(851), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [sym_null_literal] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_final] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_new] = ACTIONS(851), + [anon_sym_class] = ACTIONS(851), + [anon_sym_switch] = ACTIONS(851), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_case] = ACTIONS(851), + [anon_sym_default] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_assert] = ACTIONS(851), + [anon_sym_do] = ACTIONS(851), + [anon_sym_while] = ACTIONS(851), + [anon_sym_break] = ACTIONS(851), + [anon_sym_continue] = ACTIONS(851), + [anon_sym_return] = ACTIONS(851), + [anon_sym_yield] = ACTIONS(851), + [anon_sym_synchronized] = ACTIONS(851), + [anon_sym_throw] = ACTIONS(851), + [anon_sym_try] = ACTIONS(851), + [anon_sym_if] = ACTIONS(851), + [anon_sym_else] = ACTIONS(851), + [anon_sym_for] = ACTIONS(851), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_open] = ACTIONS(851), + [anon_sym_module] = ACTIONS(851), + [anon_sym_static] = ACTIONS(851), + [anon_sym_package] = ACTIONS(851), + [anon_sym_import] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(851), + [anon_sym_public] = ACTIONS(851), + [anon_sym_protected] = ACTIONS(851), + [anon_sym_private] = ACTIONS(851), + [anon_sym_abstract] = ACTIONS(851), + [anon_sym_strictfp] = ACTIONS(851), + [anon_sym_native] = ACTIONS(851), + [anon_sym_transient] = ACTIONS(851), + [anon_sym_volatile] = ACTIONS(851), + [anon_sym_sealed] = ACTIONS(851), + [anon_sym_non_DASHsealed] = ACTIONS(849), + [anon_sym_record] = ACTIONS(851), + [anon_sym_ATinterface] = ACTIONS(849), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_byte] = ACTIONS(851), + [anon_sym_short] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_long] = ACTIONS(851), + [anon_sym_char] = ACTIONS(851), + [anon_sym_float] = ACTIONS(851), + [anon_sym_double] = ACTIONS(851), + [sym_boolean_type] = ACTIONS(851), + [sym_void_type] = ACTIONS(851), + [sym_this] = ACTIONS(851), + [sym_super] = ACTIONS(851), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(739), - [sym_identifier] = ACTIONS(741), - [sym_decimal_integer_literal] = ACTIONS(741), - [sym_hex_integer_literal] = ACTIONS(741), - [sym_octal_integer_literal] = ACTIONS(741), - [sym_binary_integer_literal] = ACTIONS(739), - [sym_decimal_floating_point_literal] = ACTIONS(739), - [sym_hex_floating_point_literal] = ACTIONS(741), - [sym_true] = ACTIONS(741), - [sym_false] = ACTIONS(741), - [sym_character_literal] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [sym_null_literal] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_final] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_PLUS_PLUS] = ACTIONS(739), - [anon_sym_DASH_DASH] = ACTIONS(739), - [anon_sym_new] = ACTIONS(741), - [anon_sym_class] = ACTIONS(741), - [anon_sym_switch] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_case] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(741), - [anon_sym_do] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_synchronized] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(741), - [anon_sym_try] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_else] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_open] = ACTIONS(741), - [anon_sym_module] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_with] = ACTIONS(741), - [anon_sym_package] = ACTIONS(741), - [anon_sym_import] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_public] = ACTIONS(741), - [anon_sym_protected] = ACTIONS(741), - [anon_sym_private] = ACTIONS(741), - [anon_sym_abstract] = ACTIONS(741), - [anon_sym_strictfp] = ACTIONS(741), - [anon_sym_native] = ACTIONS(741), - [anon_sym_transient] = ACTIONS(741), - [anon_sym_volatile] = ACTIONS(741), - [anon_sym_sealed] = ACTIONS(741), - [anon_sym_non_DASHsealed] = ACTIONS(739), - [anon_sym_record] = ACTIONS(741), - [anon_sym_ATinterface] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(741), - [anon_sym_byte] = ACTIONS(741), - [anon_sym_short] = ACTIONS(741), - [anon_sym_int] = ACTIONS(741), - [anon_sym_long] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_float] = ACTIONS(741), - [anon_sym_double] = ACTIONS(741), - [sym_boolean_type] = ACTIONS(741), - [sym_void_type] = ACTIONS(741), - [sym_this] = ACTIONS(741), - [sym_super] = ACTIONS(741), + [STATE(227)] = { + [ts_builtin_sym_end] = ACTIONS(853), + [sym_identifier] = ACTIONS(855), + [sym_decimal_integer_literal] = ACTIONS(855), + [sym_hex_integer_literal] = ACTIONS(855), + [sym_octal_integer_literal] = ACTIONS(855), + [sym_binary_integer_literal] = ACTIONS(853), + [sym_decimal_floating_point_literal] = ACTIONS(853), + [sym_hex_floating_point_literal] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [sym_character_literal] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(853), + [sym_null_literal] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_final] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [anon_sym_new] = ACTIONS(855), + [anon_sym_class] = ACTIONS(855), + [anon_sym_switch] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_case] = ACTIONS(855), + [anon_sym_default] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(853), + [anon_sym_assert] = ACTIONS(855), + [anon_sym_do] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_yield] = ACTIONS(855), + [anon_sym_synchronized] = ACTIONS(855), + [anon_sym_throw] = ACTIONS(855), + [anon_sym_try] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(855), + [anon_sym_open] = ACTIONS(855), + [anon_sym_module] = ACTIONS(855), + [anon_sym_static] = ACTIONS(855), + [anon_sym_package] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_enum] = ACTIONS(855), + [anon_sym_public] = ACTIONS(855), + [anon_sym_protected] = ACTIONS(855), + [anon_sym_private] = ACTIONS(855), + [anon_sym_abstract] = ACTIONS(855), + [anon_sym_strictfp] = ACTIONS(855), + [anon_sym_native] = ACTIONS(855), + [anon_sym_transient] = ACTIONS(855), + [anon_sym_volatile] = ACTIONS(855), + [anon_sym_sealed] = ACTIONS(855), + [anon_sym_non_DASHsealed] = ACTIONS(853), + [anon_sym_record] = ACTIONS(855), + [anon_sym_ATinterface] = ACTIONS(853), + [anon_sym_interface] = ACTIONS(855), + [anon_sym_byte] = ACTIONS(855), + [anon_sym_short] = ACTIONS(855), + [anon_sym_int] = ACTIONS(855), + [anon_sym_long] = ACTIONS(855), + [anon_sym_char] = ACTIONS(855), + [anon_sym_float] = ACTIONS(855), + [anon_sym_double] = ACTIONS(855), + [sym_boolean_type] = ACTIONS(855), + [sym_void_type] = ACTIONS(855), + [sym_this] = ACTIONS(855), + [sym_super] = ACTIONS(855), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(743), - [sym_identifier] = ACTIONS(745), - [sym_decimal_integer_literal] = ACTIONS(745), - [sym_hex_integer_literal] = ACTIONS(745), - [sym_octal_integer_literal] = ACTIONS(745), - [sym_binary_integer_literal] = ACTIONS(743), - [sym_decimal_floating_point_literal] = ACTIONS(743), - [sym_hex_floating_point_literal] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [sym_character_literal] = ACTIONS(743), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [sym_null_literal] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_final] = ACTIONS(745), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_new] = ACTIONS(745), - [anon_sym_class] = ACTIONS(745), - [anon_sym_switch] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_case] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_assert] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_synchronized] = ACTIONS(745), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_try] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_else] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_open] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_static] = ACTIONS(745), - [anon_sym_with] = ACTIONS(745), - [anon_sym_package] = ACTIONS(745), - [anon_sym_import] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_public] = ACTIONS(745), - [anon_sym_protected] = ACTIONS(745), - [anon_sym_private] = ACTIONS(745), - [anon_sym_abstract] = ACTIONS(745), - [anon_sym_strictfp] = ACTIONS(745), - [anon_sym_native] = ACTIONS(745), - [anon_sym_transient] = ACTIONS(745), - [anon_sym_volatile] = ACTIONS(745), - [anon_sym_sealed] = ACTIONS(745), - [anon_sym_non_DASHsealed] = ACTIONS(743), - [anon_sym_record] = ACTIONS(745), - [anon_sym_ATinterface] = ACTIONS(743), - [anon_sym_interface] = ACTIONS(745), - [anon_sym_byte] = ACTIONS(745), - [anon_sym_short] = ACTIONS(745), - [anon_sym_int] = ACTIONS(745), - [anon_sym_long] = ACTIONS(745), - [anon_sym_char] = ACTIONS(745), - [anon_sym_float] = ACTIONS(745), - [anon_sym_double] = ACTIONS(745), - [sym_boolean_type] = ACTIONS(745), - [sym_void_type] = ACTIONS(745), - [sym_this] = ACTIONS(745), - [sym_super] = ACTIONS(745), + [STATE(228)] = { + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(859), + [sym_decimal_integer_literal] = ACTIONS(859), + [sym_hex_integer_literal] = ACTIONS(859), + [sym_octal_integer_literal] = ACTIONS(859), + [sym_binary_integer_literal] = ACTIONS(857), + [sym_decimal_floating_point_literal] = ACTIONS(857), + [sym_hex_floating_point_literal] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_character_literal] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(859), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [sym_null_literal] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_final] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_new] = ACTIONS(859), + [anon_sym_class] = ACTIONS(859), + [anon_sym_switch] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_case] = ACTIONS(859), + [anon_sym_default] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_assert] = ACTIONS(859), + [anon_sym_do] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_synchronized] = ACTIONS(859), + [anon_sym_throw] = ACTIONS(859), + [anon_sym_try] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_else] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(859), + [anon_sym_open] = ACTIONS(859), + [anon_sym_module] = ACTIONS(859), + [anon_sym_static] = ACTIONS(859), + [anon_sym_package] = ACTIONS(859), + [anon_sym_import] = ACTIONS(859), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_public] = ACTIONS(859), + [anon_sym_protected] = ACTIONS(859), + [anon_sym_private] = ACTIONS(859), + [anon_sym_abstract] = ACTIONS(859), + [anon_sym_strictfp] = ACTIONS(859), + [anon_sym_native] = ACTIONS(859), + [anon_sym_transient] = ACTIONS(859), + [anon_sym_volatile] = ACTIONS(859), + [anon_sym_sealed] = ACTIONS(859), + [anon_sym_non_DASHsealed] = ACTIONS(857), + [anon_sym_record] = ACTIONS(859), + [anon_sym_ATinterface] = ACTIONS(857), + [anon_sym_interface] = ACTIONS(859), + [anon_sym_byte] = ACTIONS(859), + [anon_sym_short] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_long] = ACTIONS(859), + [anon_sym_char] = ACTIONS(859), + [anon_sym_float] = ACTIONS(859), + [anon_sym_double] = ACTIONS(859), + [sym_boolean_type] = ACTIONS(859), + [sym_void_type] = ACTIONS(859), + [sym_this] = ACTIONS(859), + [sym_super] = ACTIONS(859), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(747), - [sym_identifier] = ACTIONS(749), - [sym_decimal_integer_literal] = ACTIONS(749), - [sym_hex_integer_literal] = ACTIONS(749), - [sym_octal_integer_literal] = ACTIONS(749), - [sym_binary_integer_literal] = ACTIONS(747), - [sym_decimal_floating_point_literal] = ACTIONS(747), - [sym_hex_floating_point_literal] = ACTIONS(749), - [sym_true] = ACTIONS(749), - [sym_false] = ACTIONS(749), - [sym_character_literal] = ACTIONS(747), - [anon_sym_DQUOTE] = ACTIONS(749), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [sym_null_literal] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_final] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(747), - [anon_sym_TILDE] = ACTIONS(747), - [anon_sym_PLUS_PLUS] = ACTIONS(747), - [anon_sym_DASH_DASH] = ACTIONS(747), - [anon_sym_new] = ACTIONS(749), - [anon_sym_class] = ACTIONS(749), - [anon_sym_switch] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_case] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_assert] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_yield] = ACTIONS(749), - [anon_sym_synchronized] = ACTIONS(749), - [anon_sym_throw] = ACTIONS(749), - [anon_sym_try] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_else] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_AT] = ACTIONS(749), - [anon_sym_open] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_with] = ACTIONS(749), - [anon_sym_package] = ACTIONS(749), - [anon_sym_import] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_public] = ACTIONS(749), - [anon_sym_protected] = ACTIONS(749), - [anon_sym_private] = ACTIONS(749), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_strictfp] = ACTIONS(749), - [anon_sym_native] = ACTIONS(749), - [anon_sym_transient] = ACTIONS(749), - [anon_sym_volatile] = ACTIONS(749), - [anon_sym_sealed] = ACTIONS(749), - [anon_sym_non_DASHsealed] = ACTIONS(747), - [anon_sym_record] = ACTIONS(749), - [anon_sym_ATinterface] = ACTIONS(747), - [anon_sym_interface] = ACTIONS(749), - [anon_sym_byte] = ACTIONS(749), - [anon_sym_short] = ACTIONS(749), - [anon_sym_int] = ACTIONS(749), - [anon_sym_long] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_float] = ACTIONS(749), - [anon_sym_double] = ACTIONS(749), - [sym_boolean_type] = ACTIONS(749), - [sym_void_type] = ACTIONS(749), - [sym_this] = ACTIONS(749), - [sym_super] = ACTIONS(749), + [STATE(229)] = { + [ts_builtin_sym_end] = ACTIONS(861), + [sym_identifier] = ACTIONS(863), + [sym_decimal_integer_literal] = ACTIONS(863), + [sym_hex_integer_literal] = ACTIONS(863), + [sym_octal_integer_literal] = ACTIONS(863), + [sym_binary_integer_literal] = ACTIONS(861), + [sym_decimal_floating_point_literal] = ACTIONS(861), + [sym_hex_floating_point_literal] = ACTIONS(863), + [sym_true] = ACTIONS(863), + [sym_false] = ACTIONS(863), + [sym_character_literal] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [sym_null_literal] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_final] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_new] = ACTIONS(863), + [anon_sym_class] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_case] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_assert] = ACTIONS(863), + [anon_sym_do] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_yield] = ACTIONS(863), + [anon_sym_synchronized] = ACTIONS(863), + [anon_sym_throw] = ACTIONS(863), + [anon_sym_try] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_else] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_AT] = ACTIONS(863), + [anon_sym_open] = ACTIONS(863), + [anon_sym_module] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_package] = ACTIONS(863), + [anon_sym_import] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_public] = ACTIONS(863), + [anon_sym_protected] = ACTIONS(863), + [anon_sym_private] = ACTIONS(863), + [anon_sym_abstract] = ACTIONS(863), + [anon_sym_strictfp] = ACTIONS(863), + [anon_sym_native] = ACTIONS(863), + [anon_sym_transient] = ACTIONS(863), + [anon_sym_volatile] = ACTIONS(863), + [anon_sym_sealed] = ACTIONS(863), + [anon_sym_non_DASHsealed] = ACTIONS(861), + [anon_sym_record] = ACTIONS(863), + [anon_sym_ATinterface] = ACTIONS(861), + [anon_sym_interface] = ACTIONS(863), + [anon_sym_byte] = ACTIONS(863), + [anon_sym_short] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_long] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_float] = ACTIONS(863), + [anon_sym_double] = ACTIONS(863), + [sym_boolean_type] = ACTIONS(863), + [sym_void_type] = ACTIONS(863), + [sym_this] = ACTIONS(863), + [sym_super] = ACTIONS(863), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(751), - [sym_identifier] = ACTIONS(753), - [sym_decimal_integer_literal] = ACTIONS(753), - [sym_hex_integer_literal] = ACTIONS(753), - [sym_octal_integer_literal] = ACTIONS(753), - [sym_binary_integer_literal] = ACTIONS(751), - [sym_decimal_floating_point_literal] = ACTIONS(751), - [sym_hex_floating_point_literal] = ACTIONS(753), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_character_literal] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [sym_null_literal] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_final] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(751), - [anon_sym_TILDE] = ACTIONS(751), - [anon_sym_PLUS_PLUS] = ACTIONS(751), - [anon_sym_DASH_DASH] = ACTIONS(751), - [anon_sym_new] = ACTIONS(753), - [anon_sym_class] = ACTIONS(753), - [anon_sym_switch] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_case] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_assert] = ACTIONS(753), - [anon_sym_do] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_yield] = ACTIONS(753), - [anon_sym_synchronized] = ACTIONS(753), - [anon_sym_throw] = ACTIONS(753), - [anon_sym_try] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_else] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(753), - [anon_sym_open] = ACTIONS(753), - [anon_sym_module] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_with] = ACTIONS(753), - [anon_sym_package] = ACTIONS(753), - [anon_sym_import] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_public] = ACTIONS(753), - [anon_sym_protected] = ACTIONS(753), - [anon_sym_private] = ACTIONS(753), - [anon_sym_abstract] = ACTIONS(753), - [anon_sym_strictfp] = ACTIONS(753), - [anon_sym_native] = ACTIONS(753), - [anon_sym_transient] = ACTIONS(753), - [anon_sym_volatile] = ACTIONS(753), - [anon_sym_sealed] = ACTIONS(753), - [anon_sym_non_DASHsealed] = ACTIONS(751), - [anon_sym_record] = ACTIONS(753), - [anon_sym_ATinterface] = ACTIONS(751), - [anon_sym_interface] = ACTIONS(753), - [anon_sym_byte] = ACTIONS(753), - [anon_sym_short] = ACTIONS(753), - [anon_sym_int] = ACTIONS(753), - [anon_sym_long] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_float] = ACTIONS(753), - [anon_sym_double] = ACTIONS(753), - [sym_boolean_type] = ACTIONS(753), - [sym_void_type] = ACTIONS(753), - [sym_this] = ACTIONS(753), - [sym_super] = ACTIONS(753), + [STATE(230)] = { + [ts_builtin_sym_end] = ACTIONS(865), + [sym_identifier] = ACTIONS(867), + [sym_decimal_integer_literal] = ACTIONS(867), + [sym_hex_integer_literal] = ACTIONS(867), + [sym_octal_integer_literal] = ACTIONS(867), + [sym_binary_integer_literal] = ACTIONS(865), + [sym_decimal_floating_point_literal] = ACTIONS(865), + [sym_hex_floating_point_literal] = ACTIONS(867), + [sym_true] = ACTIONS(867), + [sym_false] = ACTIONS(867), + [sym_character_literal] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [sym_null_literal] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_final] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_new] = ACTIONS(867), + [anon_sym_class] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_case] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_assert] = ACTIONS(867), + [anon_sym_do] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_yield] = ACTIONS(867), + [anon_sym_synchronized] = ACTIONS(867), + [anon_sym_throw] = ACTIONS(867), + [anon_sym_try] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_else] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [anon_sym_open] = ACTIONS(867), + [anon_sym_module] = ACTIONS(867), + [anon_sym_static] = ACTIONS(867), + [anon_sym_package] = ACTIONS(867), + [anon_sym_import] = ACTIONS(867), + [anon_sym_enum] = ACTIONS(867), + [anon_sym_public] = ACTIONS(867), + [anon_sym_protected] = ACTIONS(867), + [anon_sym_private] = ACTIONS(867), + [anon_sym_abstract] = ACTIONS(867), + [anon_sym_strictfp] = ACTIONS(867), + [anon_sym_native] = ACTIONS(867), + [anon_sym_transient] = ACTIONS(867), + [anon_sym_volatile] = ACTIONS(867), + [anon_sym_sealed] = ACTIONS(867), + [anon_sym_non_DASHsealed] = ACTIONS(865), + [anon_sym_record] = ACTIONS(867), + [anon_sym_ATinterface] = ACTIONS(865), + [anon_sym_interface] = ACTIONS(867), + [anon_sym_byte] = ACTIONS(867), + [anon_sym_short] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_long] = ACTIONS(867), + [anon_sym_char] = ACTIONS(867), + [anon_sym_float] = ACTIONS(867), + [anon_sym_double] = ACTIONS(867), + [sym_boolean_type] = ACTIONS(867), + [sym_void_type] = ACTIONS(867), + [sym_this] = ACTIONS(867), + [sym_super] = ACTIONS(867), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(755), - [sym_identifier] = ACTIONS(757), - [sym_decimal_integer_literal] = ACTIONS(757), - [sym_hex_integer_literal] = ACTIONS(757), - [sym_octal_integer_literal] = ACTIONS(757), - [sym_binary_integer_literal] = ACTIONS(755), - [sym_decimal_floating_point_literal] = ACTIONS(755), - [sym_hex_floating_point_literal] = ACTIONS(757), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_character_literal] = ACTIONS(755), - [anon_sym_DQUOTE] = ACTIONS(757), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [sym_null_literal] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_final] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_new] = ACTIONS(757), - [anon_sym_class] = ACTIONS(757), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_case] = ACTIONS(757), - [anon_sym_default] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_assert] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_yield] = ACTIONS(757), - [anon_sym_synchronized] = ACTIONS(757), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_try] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_else] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_static] = ACTIONS(757), - [anon_sym_with] = ACTIONS(757), - [anon_sym_package] = ACTIONS(757), - [anon_sym_import] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(757), - [anon_sym_public] = ACTIONS(757), - [anon_sym_protected] = ACTIONS(757), - [anon_sym_private] = ACTIONS(757), - [anon_sym_abstract] = ACTIONS(757), - [anon_sym_strictfp] = ACTIONS(757), - [anon_sym_native] = ACTIONS(757), - [anon_sym_transient] = ACTIONS(757), - [anon_sym_volatile] = ACTIONS(757), - [anon_sym_sealed] = ACTIONS(757), - [anon_sym_non_DASHsealed] = ACTIONS(755), - [anon_sym_record] = ACTIONS(757), - [anon_sym_ATinterface] = ACTIONS(755), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_byte] = ACTIONS(757), - [anon_sym_short] = ACTIONS(757), - [anon_sym_int] = ACTIONS(757), - [anon_sym_long] = ACTIONS(757), - [anon_sym_char] = ACTIONS(757), - [anon_sym_float] = ACTIONS(757), - [anon_sym_double] = ACTIONS(757), - [sym_boolean_type] = ACTIONS(757), - [sym_void_type] = ACTIONS(757), - [sym_this] = ACTIONS(757), - [sym_super] = ACTIONS(757), + [STATE(231)] = { + [ts_builtin_sym_end] = ACTIONS(869), + [sym_identifier] = ACTIONS(871), + [sym_decimal_integer_literal] = ACTIONS(871), + [sym_hex_integer_literal] = ACTIONS(871), + [sym_octal_integer_literal] = ACTIONS(871), + [sym_binary_integer_literal] = ACTIONS(869), + [sym_decimal_floating_point_literal] = ACTIONS(869), + [sym_hex_floating_point_literal] = ACTIONS(871), + [sym_true] = ACTIONS(871), + [sym_false] = ACTIONS(871), + [sym_character_literal] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), + [anon_sym_RBRACE] = ACTIONS(869), + [sym_null_literal] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_LT] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_final] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(869), + [anon_sym_TILDE] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(869), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_new] = ACTIONS(871), + [anon_sym_class] = ACTIONS(871), + [anon_sym_switch] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_case] = ACTIONS(871), + [anon_sym_default] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_assert] = ACTIONS(871), + [anon_sym_do] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [anon_sym_break] = ACTIONS(871), + [anon_sym_continue] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(871), + [anon_sym_synchronized] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(871), + [anon_sym_try] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_else] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_AT] = ACTIONS(871), + [anon_sym_open] = ACTIONS(871), + [anon_sym_module] = ACTIONS(871), + [anon_sym_static] = ACTIONS(871), + [anon_sym_package] = ACTIONS(871), + [anon_sym_import] = ACTIONS(871), + [anon_sym_enum] = ACTIONS(871), + [anon_sym_public] = ACTIONS(871), + [anon_sym_protected] = ACTIONS(871), + [anon_sym_private] = ACTIONS(871), + [anon_sym_abstract] = ACTIONS(871), + [anon_sym_strictfp] = ACTIONS(871), + [anon_sym_native] = ACTIONS(871), + [anon_sym_transient] = ACTIONS(871), + [anon_sym_volatile] = ACTIONS(871), + [anon_sym_sealed] = ACTIONS(871), + [anon_sym_non_DASHsealed] = ACTIONS(869), + [anon_sym_record] = ACTIONS(871), + [anon_sym_ATinterface] = ACTIONS(869), + [anon_sym_interface] = ACTIONS(871), + [anon_sym_byte] = ACTIONS(871), + [anon_sym_short] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_long] = ACTIONS(871), + [anon_sym_char] = ACTIONS(871), + [anon_sym_float] = ACTIONS(871), + [anon_sym_double] = ACTIONS(871), + [sym_boolean_type] = ACTIONS(871), + [sym_void_type] = ACTIONS(871), + [sym_this] = ACTIONS(871), + [sym_super] = ACTIONS(871), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(759), - [sym_identifier] = ACTIONS(761), - [sym_decimal_integer_literal] = ACTIONS(761), - [sym_hex_integer_literal] = ACTIONS(761), - [sym_octal_integer_literal] = ACTIONS(761), - [sym_binary_integer_literal] = ACTIONS(759), - [sym_decimal_floating_point_literal] = ACTIONS(759), - [sym_hex_floating_point_literal] = ACTIONS(761), - [sym_true] = ACTIONS(761), - [sym_false] = ACTIONS(761), - [sym_character_literal] = ACTIONS(759), - [anon_sym_DQUOTE] = ACTIONS(761), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [sym_null_literal] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_PLUS] = ACTIONS(761), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_final] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(759), - [anon_sym_new] = ACTIONS(761), - [anon_sym_class] = ACTIONS(761), - [anon_sym_switch] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_case] = ACTIONS(761), - [anon_sym_default] = ACTIONS(761), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_assert] = ACTIONS(761), - [anon_sym_do] = ACTIONS(761), - [anon_sym_while] = ACTIONS(761), - [anon_sym_break] = ACTIONS(761), - [anon_sym_continue] = ACTIONS(761), - [anon_sym_return] = ACTIONS(761), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_synchronized] = ACTIONS(761), - [anon_sym_throw] = ACTIONS(761), - [anon_sym_try] = ACTIONS(761), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(761), - [anon_sym_for] = ACTIONS(761), - [anon_sym_AT] = ACTIONS(761), - [anon_sym_open] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_static] = ACTIONS(761), - [anon_sym_with] = ACTIONS(761), - [anon_sym_package] = ACTIONS(761), - [anon_sym_import] = ACTIONS(761), - [anon_sym_enum] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_abstract] = ACTIONS(761), - [anon_sym_strictfp] = ACTIONS(761), - [anon_sym_native] = ACTIONS(761), - [anon_sym_transient] = ACTIONS(761), - [anon_sym_volatile] = ACTIONS(761), - [anon_sym_sealed] = ACTIONS(761), - [anon_sym_non_DASHsealed] = ACTIONS(759), - [anon_sym_record] = ACTIONS(761), - [anon_sym_ATinterface] = ACTIONS(759), - [anon_sym_interface] = ACTIONS(761), - [anon_sym_byte] = ACTIONS(761), - [anon_sym_short] = ACTIONS(761), - [anon_sym_int] = ACTIONS(761), - [anon_sym_long] = ACTIONS(761), - [anon_sym_char] = ACTIONS(761), - [anon_sym_float] = ACTIONS(761), - [anon_sym_double] = ACTIONS(761), - [sym_boolean_type] = ACTIONS(761), - [sym_void_type] = ACTIONS(761), - [sym_this] = ACTIONS(761), - [sym_super] = ACTIONS(761), + [STATE(232)] = { + [ts_builtin_sym_end] = ACTIONS(873), + [sym_identifier] = ACTIONS(875), + [sym_decimal_integer_literal] = ACTIONS(875), + [sym_hex_integer_literal] = ACTIONS(875), + [sym_octal_integer_literal] = ACTIONS(875), + [sym_binary_integer_literal] = ACTIONS(873), + [sym_decimal_floating_point_literal] = ACTIONS(873), + [sym_hex_floating_point_literal] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [sym_character_literal] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(873), + [sym_null_literal] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_final] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(873), + [anon_sym_DASH_DASH] = ACTIONS(873), + [anon_sym_new] = ACTIONS(875), + [anon_sym_class] = ACTIONS(875), + [anon_sym_switch] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_case] = ACTIONS(875), + [anon_sym_default] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(873), + [anon_sym_assert] = ACTIONS(875), + [anon_sym_do] = ACTIONS(875), + [anon_sym_while] = ACTIONS(875), + [anon_sym_break] = ACTIONS(875), + [anon_sym_continue] = ACTIONS(875), + [anon_sym_return] = ACTIONS(875), + [anon_sym_yield] = ACTIONS(875), + [anon_sym_synchronized] = ACTIONS(875), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_try] = ACTIONS(875), + [anon_sym_if] = ACTIONS(875), + [anon_sym_else] = ACTIONS(875), + [anon_sym_for] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(875), + [anon_sym_open] = ACTIONS(875), + [anon_sym_module] = ACTIONS(875), + [anon_sym_static] = ACTIONS(875), + [anon_sym_package] = ACTIONS(875), + [anon_sym_import] = ACTIONS(875), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_public] = ACTIONS(875), + [anon_sym_protected] = ACTIONS(875), + [anon_sym_private] = ACTIONS(875), + [anon_sym_abstract] = ACTIONS(875), + [anon_sym_strictfp] = ACTIONS(875), + [anon_sym_native] = ACTIONS(875), + [anon_sym_transient] = ACTIONS(875), + [anon_sym_volatile] = ACTIONS(875), + [anon_sym_sealed] = ACTIONS(875), + [anon_sym_non_DASHsealed] = ACTIONS(873), + [anon_sym_record] = ACTIONS(875), + [anon_sym_ATinterface] = ACTIONS(873), + [anon_sym_interface] = ACTIONS(875), + [anon_sym_byte] = ACTIONS(875), + [anon_sym_short] = ACTIONS(875), + [anon_sym_int] = ACTIONS(875), + [anon_sym_long] = ACTIONS(875), + [anon_sym_char] = ACTIONS(875), + [anon_sym_float] = ACTIONS(875), + [anon_sym_double] = ACTIONS(875), + [sym_boolean_type] = ACTIONS(875), + [sym_void_type] = ACTIONS(875), + [sym_this] = ACTIONS(875), + [sym_super] = ACTIONS(875), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(233)] = { + [ts_builtin_sym_end] = ACTIONS(877), + [sym_identifier] = ACTIONS(879), + [sym_decimal_integer_literal] = ACTIONS(879), + [sym_hex_integer_literal] = ACTIONS(879), + [sym_octal_integer_literal] = ACTIONS(879), + [sym_binary_integer_literal] = ACTIONS(877), + [sym_decimal_floating_point_literal] = ACTIONS(877), + [sym_hex_floating_point_literal] = ACTIONS(879), + [sym_true] = ACTIONS(879), + [sym_false] = ACTIONS(879), + [sym_character_literal] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(879), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [sym_null_literal] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(879), + [anon_sym_final] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_new] = ACTIONS(879), + [anon_sym_class] = ACTIONS(879), + [anon_sym_switch] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_case] = ACTIONS(879), + [anon_sym_default] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_assert] = ACTIONS(879), + [anon_sym_do] = ACTIONS(879), + [anon_sym_while] = ACTIONS(879), + [anon_sym_break] = ACTIONS(879), + [anon_sym_continue] = ACTIONS(879), + [anon_sym_return] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(879), + [anon_sym_synchronized] = ACTIONS(879), + [anon_sym_throw] = ACTIONS(879), + [anon_sym_try] = ACTIONS(879), + [anon_sym_if] = ACTIONS(879), + [anon_sym_else] = ACTIONS(879), + [anon_sym_for] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(879), + [anon_sym_open] = ACTIONS(879), + [anon_sym_module] = ACTIONS(879), + [anon_sym_static] = ACTIONS(879), + [anon_sym_package] = ACTIONS(879), + [anon_sym_import] = ACTIONS(879), + [anon_sym_enum] = ACTIONS(879), + [anon_sym_public] = ACTIONS(879), + [anon_sym_protected] = ACTIONS(879), + [anon_sym_private] = ACTIONS(879), + [anon_sym_abstract] = ACTIONS(879), + [anon_sym_strictfp] = ACTIONS(879), + [anon_sym_native] = ACTIONS(879), + [anon_sym_transient] = ACTIONS(879), + [anon_sym_volatile] = ACTIONS(879), + [anon_sym_sealed] = ACTIONS(879), + [anon_sym_non_DASHsealed] = ACTIONS(877), + [anon_sym_record] = ACTIONS(879), + [anon_sym_ATinterface] = ACTIONS(877), + [anon_sym_interface] = ACTIONS(879), + [anon_sym_byte] = ACTIONS(879), + [anon_sym_short] = ACTIONS(879), + [anon_sym_int] = ACTIONS(879), + [anon_sym_long] = ACTIONS(879), + [anon_sym_char] = ACTIONS(879), + [anon_sym_float] = ACTIONS(879), + [anon_sym_double] = ACTIONS(879), + [sym_boolean_type] = ACTIONS(879), + [sym_void_type] = ACTIONS(879), + [sym_this] = ACTIONS(879), + [sym_super] = ACTIONS(879), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(234)] = { + [ts_builtin_sym_end] = ACTIONS(881), + [sym_identifier] = ACTIONS(883), + [sym_decimal_integer_literal] = ACTIONS(883), + [sym_hex_integer_literal] = ACTIONS(883), + [sym_octal_integer_literal] = ACTIONS(883), + [sym_binary_integer_literal] = ACTIONS(881), + [sym_decimal_floating_point_literal] = ACTIONS(881), + [sym_hex_floating_point_literal] = ACTIONS(883), + [sym_true] = ACTIONS(883), + [sym_false] = ACTIONS(883), + [sym_character_literal] = ACTIONS(881), + [anon_sym_DQUOTE] = ACTIONS(883), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [sym_null_literal] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_LT] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_final] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(881), + [anon_sym_TILDE] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(881), + [anon_sym_DASH_DASH] = ACTIONS(881), + [anon_sym_new] = ACTIONS(883), + [anon_sym_class] = ACTIONS(883), + [anon_sym_switch] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_case] = ACTIONS(883), + [anon_sym_default] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_assert] = ACTIONS(883), + [anon_sym_do] = ACTIONS(883), + [anon_sym_while] = ACTIONS(883), + [anon_sym_break] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(883), + [anon_sym_return] = ACTIONS(883), + [anon_sym_yield] = ACTIONS(883), + [anon_sym_synchronized] = ACTIONS(883), + [anon_sym_throw] = ACTIONS(883), + [anon_sym_try] = ACTIONS(883), + [anon_sym_if] = ACTIONS(883), + [anon_sym_else] = ACTIONS(883), + [anon_sym_for] = ACTIONS(883), + [anon_sym_AT] = ACTIONS(883), + [anon_sym_open] = ACTIONS(883), + [anon_sym_module] = ACTIONS(883), + [anon_sym_static] = ACTIONS(883), + [anon_sym_package] = ACTIONS(883), + [anon_sym_import] = ACTIONS(883), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_public] = ACTIONS(883), + [anon_sym_protected] = ACTIONS(883), + [anon_sym_private] = ACTIONS(883), + [anon_sym_abstract] = ACTIONS(883), + [anon_sym_strictfp] = ACTIONS(883), + [anon_sym_native] = ACTIONS(883), + [anon_sym_transient] = ACTIONS(883), + [anon_sym_volatile] = ACTIONS(883), + [anon_sym_sealed] = ACTIONS(883), + [anon_sym_non_DASHsealed] = ACTIONS(881), + [anon_sym_record] = ACTIONS(883), + [anon_sym_ATinterface] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(883), + [anon_sym_byte] = ACTIONS(883), + [anon_sym_short] = ACTIONS(883), + [anon_sym_int] = ACTIONS(883), + [anon_sym_long] = ACTIONS(883), + [anon_sym_char] = ACTIONS(883), + [anon_sym_float] = ACTIONS(883), + [anon_sym_double] = ACTIONS(883), + [sym_boolean_type] = ACTIONS(883), + [sym_void_type] = ACTIONS(883), + [sym_this] = ACTIONS(883), + [sym_super] = ACTIONS(883), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(235)] = { + [ts_builtin_sym_end] = ACTIONS(885), + [sym_identifier] = ACTIONS(887), + [sym_decimal_integer_literal] = ACTIONS(887), + [sym_hex_integer_literal] = ACTIONS(887), + [sym_octal_integer_literal] = ACTIONS(887), + [sym_binary_integer_literal] = ACTIONS(885), + [sym_decimal_floating_point_literal] = ACTIONS(885), + [sym_hex_floating_point_literal] = ACTIONS(887), + [sym_true] = ACTIONS(887), + [sym_false] = ACTIONS(887), + [sym_character_literal] = ACTIONS(885), + [anon_sym_DQUOTE] = ACTIONS(887), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [sym_null_literal] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_LT] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_final] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(885), + [anon_sym_TILDE] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_new] = ACTIONS(887), + [anon_sym_class] = ACTIONS(887), + [anon_sym_switch] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_case] = ACTIONS(887), + [anon_sym_default] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_assert] = ACTIONS(887), + [anon_sym_do] = ACTIONS(887), + [anon_sym_while] = ACTIONS(887), + [anon_sym_break] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_return] = ACTIONS(887), + [anon_sym_yield] = ACTIONS(887), + [anon_sym_synchronized] = ACTIONS(887), + [anon_sym_throw] = ACTIONS(887), + [anon_sym_try] = ACTIONS(887), + [anon_sym_if] = ACTIONS(887), + [anon_sym_else] = ACTIONS(887), + [anon_sym_for] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_open] = ACTIONS(887), + [anon_sym_module] = ACTIONS(887), + [anon_sym_static] = ACTIONS(887), + [anon_sym_package] = ACTIONS(887), + [anon_sym_import] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(887), + [anon_sym_public] = ACTIONS(887), + [anon_sym_protected] = ACTIONS(887), + [anon_sym_private] = ACTIONS(887), + [anon_sym_abstract] = ACTIONS(887), + [anon_sym_strictfp] = ACTIONS(887), + [anon_sym_native] = ACTIONS(887), + [anon_sym_transient] = ACTIONS(887), + [anon_sym_volatile] = ACTIONS(887), + [anon_sym_sealed] = ACTIONS(887), + [anon_sym_non_DASHsealed] = ACTIONS(885), + [anon_sym_record] = ACTIONS(887), + [anon_sym_ATinterface] = ACTIONS(885), + [anon_sym_interface] = ACTIONS(887), + [anon_sym_byte] = ACTIONS(887), + [anon_sym_short] = ACTIONS(887), + [anon_sym_int] = ACTIONS(887), + [anon_sym_long] = ACTIONS(887), + [anon_sym_char] = ACTIONS(887), + [anon_sym_float] = ACTIONS(887), + [anon_sym_double] = ACTIONS(887), + [sym_boolean_type] = ACTIONS(887), + [sym_void_type] = ACTIONS(887), + [sym_this] = ACTIONS(887), + [sym_super] = ACTIONS(887), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(236)] = { + [ts_builtin_sym_end] = ACTIONS(889), + [sym_identifier] = ACTIONS(891), + [sym_decimal_integer_literal] = ACTIONS(891), + [sym_hex_integer_literal] = ACTIONS(891), + [sym_octal_integer_literal] = ACTIONS(891), + [sym_binary_integer_literal] = ACTIONS(889), + [sym_decimal_floating_point_literal] = ACTIONS(889), + [sym_hex_floating_point_literal] = ACTIONS(891), + [sym_true] = ACTIONS(891), + [sym_false] = ACTIONS(891), + [sym_character_literal] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(889), + [sym_null_literal] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(891), + [anon_sym_final] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_DASH_DASH] = ACTIONS(889), + [anon_sym_new] = ACTIONS(891), + [anon_sym_class] = ACTIONS(891), + [anon_sym_switch] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_case] = ACTIONS(891), + [anon_sym_default] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_assert] = ACTIONS(891), + [anon_sym_do] = ACTIONS(891), + [anon_sym_while] = ACTIONS(891), + [anon_sym_break] = ACTIONS(891), + [anon_sym_continue] = ACTIONS(891), + [anon_sym_return] = ACTIONS(891), + [anon_sym_yield] = ACTIONS(891), + [anon_sym_synchronized] = ACTIONS(891), + [anon_sym_throw] = ACTIONS(891), + [anon_sym_try] = ACTIONS(891), + [anon_sym_if] = ACTIONS(891), + [anon_sym_else] = ACTIONS(891), + [anon_sym_for] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(891), + [anon_sym_open] = ACTIONS(891), + [anon_sym_module] = ACTIONS(891), + [anon_sym_static] = ACTIONS(891), + [anon_sym_package] = ACTIONS(891), + [anon_sym_import] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(891), + [anon_sym_public] = ACTIONS(891), + [anon_sym_protected] = ACTIONS(891), + [anon_sym_private] = ACTIONS(891), + [anon_sym_abstract] = ACTIONS(891), + [anon_sym_strictfp] = ACTIONS(891), + [anon_sym_native] = ACTIONS(891), + [anon_sym_transient] = ACTIONS(891), + [anon_sym_volatile] = ACTIONS(891), + [anon_sym_sealed] = ACTIONS(891), + [anon_sym_non_DASHsealed] = ACTIONS(889), + [anon_sym_record] = ACTIONS(891), + [anon_sym_ATinterface] = ACTIONS(889), + [anon_sym_interface] = ACTIONS(891), + [anon_sym_byte] = ACTIONS(891), + [anon_sym_short] = ACTIONS(891), + [anon_sym_int] = ACTIONS(891), + [anon_sym_long] = ACTIONS(891), + [anon_sym_char] = ACTIONS(891), + [anon_sym_float] = ACTIONS(891), + [anon_sym_double] = ACTIONS(891), + [sym_boolean_type] = ACTIONS(891), + [sym_void_type] = ACTIONS(891), + [sym_this] = ACTIONS(891), + [sym_super] = ACTIONS(891), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(237)] = { + [ts_builtin_sym_end] = ACTIONS(893), + [sym_identifier] = ACTIONS(895), + [sym_decimal_integer_literal] = ACTIONS(895), + [sym_hex_integer_literal] = ACTIONS(895), + [sym_octal_integer_literal] = ACTIONS(895), + [sym_binary_integer_literal] = ACTIONS(893), + [sym_decimal_floating_point_literal] = ACTIONS(893), + [sym_hex_floating_point_literal] = ACTIONS(895), + [sym_true] = ACTIONS(895), + [sym_false] = ACTIONS(895), + [sym_character_literal] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(895), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [sym_null_literal] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_final] = ACTIONS(895), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_TILDE] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_new] = ACTIONS(895), + [anon_sym_class] = ACTIONS(895), + [anon_sym_switch] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_case] = ACTIONS(895), + [anon_sym_default] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_assert] = ACTIONS(895), + [anon_sym_do] = ACTIONS(895), + [anon_sym_while] = ACTIONS(895), + [anon_sym_break] = ACTIONS(895), + [anon_sym_continue] = ACTIONS(895), + [anon_sym_return] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(895), + [anon_sym_synchronized] = ACTIONS(895), + [anon_sym_throw] = ACTIONS(895), + [anon_sym_try] = ACTIONS(895), + [anon_sym_if] = ACTIONS(895), + [anon_sym_else] = ACTIONS(895), + [anon_sym_for] = ACTIONS(895), + [anon_sym_AT] = ACTIONS(895), + [anon_sym_open] = ACTIONS(895), + [anon_sym_module] = ACTIONS(895), + [anon_sym_static] = ACTIONS(895), + [anon_sym_package] = ACTIONS(895), + [anon_sym_import] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(895), + [anon_sym_public] = ACTIONS(895), + [anon_sym_protected] = ACTIONS(895), + [anon_sym_private] = ACTIONS(895), + [anon_sym_abstract] = ACTIONS(895), + [anon_sym_strictfp] = ACTIONS(895), + [anon_sym_native] = ACTIONS(895), + [anon_sym_transient] = ACTIONS(895), + [anon_sym_volatile] = ACTIONS(895), + [anon_sym_sealed] = ACTIONS(895), + [anon_sym_non_DASHsealed] = ACTIONS(893), + [anon_sym_record] = ACTIONS(895), + [anon_sym_ATinterface] = ACTIONS(893), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_byte] = ACTIONS(895), + [anon_sym_short] = ACTIONS(895), + [anon_sym_int] = ACTIONS(895), + [anon_sym_long] = ACTIONS(895), + [anon_sym_char] = ACTIONS(895), + [anon_sym_float] = ACTIONS(895), + [anon_sym_double] = ACTIONS(895), + [sym_boolean_type] = ACTIONS(895), + [sym_void_type] = ACTIONS(895), + [sym_this] = ACTIONS(895), + [sym_super] = ACTIONS(895), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(238)] = { + [ts_builtin_sym_end] = ACTIONS(897), + [sym_identifier] = ACTIONS(899), + [sym_decimal_integer_literal] = ACTIONS(899), + [sym_hex_integer_literal] = ACTIONS(899), + [sym_octal_integer_literal] = ACTIONS(899), + [sym_binary_integer_literal] = ACTIONS(897), + [sym_decimal_floating_point_literal] = ACTIONS(897), + [sym_hex_floating_point_literal] = ACTIONS(899), + [sym_true] = ACTIONS(899), + [sym_false] = ACTIONS(899), + [sym_character_literal] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(899), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [sym_null_literal] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_final] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), + [anon_sym_new] = ACTIONS(899), + [anon_sym_class] = ACTIONS(899), + [anon_sym_switch] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_case] = ACTIONS(899), + [anon_sym_default] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_assert] = ACTIONS(899), + [anon_sym_do] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(899), + [anon_sym_synchronized] = ACTIONS(899), + [anon_sym_throw] = ACTIONS(899), + [anon_sym_try] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_else] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(899), + [anon_sym_open] = ACTIONS(899), + [anon_sym_module] = ACTIONS(899), + [anon_sym_static] = ACTIONS(899), + [anon_sym_package] = ACTIONS(899), + [anon_sym_import] = ACTIONS(899), + [anon_sym_enum] = ACTIONS(899), + [anon_sym_public] = ACTIONS(899), + [anon_sym_protected] = ACTIONS(899), + [anon_sym_private] = ACTIONS(899), + [anon_sym_abstract] = ACTIONS(899), + [anon_sym_strictfp] = ACTIONS(899), + [anon_sym_native] = ACTIONS(899), + [anon_sym_transient] = ACTIONS(899), + [anon_sym_volatile] = ACTIONS(899), + [anon_sym_sealed] = ACTIONS(899), + [anon_sym_non_DASHsealed] = ACTIONS(897), + [anon_sym_record] = ACTIONS(899), + [anon_sym_ATinterface] = ACTIONS(897), + [anon_sym_interface] = ACTIONS(899), + [anon_sym_byte] = ACTIONS(899), + [anon_sym_short] = ACTIONS(899), + [anon_sym_int] = ACTIONS(899), + [anon_sym_long] = ACTIONS(899), + [anon_sym_char] = ACTIONS(899), + [anon_sym_float] = ACTIONS(899), + [anon_sym_double] = ACTIONS(899), + [sym_boolean_type] = ACTIONS(899), + [sym_void_type] = ACTIONS(899), + [sym_this] = ACTIONS(899), + [sym_super] = ACTIONS(899), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(239)] = { + [ts_builtin_sym_end] = ACTIONS(901), + [sym_identifier] = ACTIONS(903), + [sym_decimal_integer_literal] = ACTIONS(903), + [sym_hex_integer_literal] = ACTIONS(903), + [sym_octal_integer_literal] = ACTIONS(903), + [sym_binary_integer_literal] = ACTIONS(901), + [sym_decimal_floating_point_literal] = ACTIONS(901), + [sym_hex_floating_point_literal] = ACTIONS(903), + [sym_true] = ACTIONS(903), + [sym_false] = ACTIONS(903), + [sym_character_literal] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(903), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [sym_null_literal] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_final] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_new] = ACTIONS(903), + [anon_sym_class] = ACTIONS(903), + [anon_sym_switch] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_case] = ACTIONS(903), + [anon_sym_default] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_assert] = ACTIONS(903), + [anon_sym_do] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_synchronized] = ACTIONS(903), + [anon_sym_throw] = ACTIONS(903), + [anon_sym_try] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_else] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(903), + [anon_sym_open] = ACTIONS(903), + [anon_sym_module] = ACTIONS(903), + [anon_sym_static] = ACTIONS(903), + [anon_sym_package] = ACTIONS(903), + [anon_sym_import] = ACTIONS(903), + [anon_sym_enum] = ACTIONS(903), + [anon_sym_public] = ACTIONS(903), + [anon_sym_protected] = ACTIONS(903), + [anon_sym_private] = ACTIONS(903), + [anon_sym_abstract] = ACTIONS(903), + [anon_sym_strictfp] = ACTIONS(903), + [anon_sym_native] = ACTIONS(903), + [anon_sym_transient] = ACTIONS(903), + [anon_sym_volatile] = ACTIONS(903), + [anon_sym_sealed] = ACTIONS(903), + [anon_sym_non_DASHsealed] = ACTIONS(901), + [anon_sym_record] = ACTIONS(903), + [anon_sym_ATinterface] = ACTIONS(901), + [anon_sym_interface] = ACTIONS(903), + [anon_sym_byte] = ACTIONS(903), + [anon_sym_short] = ACTIONS(903), + [anon_sym_int] = ACTIONS(903), + [anon_sym_long] = ACTIONS(903), + [anon_sym_char] = ACTIONS(903), + [anon_sym_float] = ACTIONS(903), + [anon_sym_double] = ACTIONS(903), + [sym_boolean_type] = ACTIONS(903), + [sym_void_type] = ACTIONS(903), + [sym_this] = ACTIONS(903), + [sym_super] = ACTIONS(903), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(240)] = { + [ts_builtin_sym_end] = ACTIONS(905), + [sym_identifier] = ACTIONS(907), + [sym_decimal_integer_literal] = ACTIONS(907), + [sym_hex_integer_literal] = ACTIONS(907), + [sym_octal_integer_literal] = ACTIONS(907), + [sym_binary_integer_literal] = ACTIONS(905), + [sym_decimal_floating_point_literal] = ACTIONS(905), + [sym_hex_floating_point_literal] = ACTIONS(907), + [sym_true] = ACTIONS(907), + [sym_false] = ACTIONS(907), + [sym_character_literal] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [sym_null_literal] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_final] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(905), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_new] = ACTIONS(907), + [anon_sym_class] = ACTIONS(907), + [anon_sym_switch] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_case] = ACTIONS(907), + [anon_sym_default] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_assert] = ACTIONS(907), + [anon_sym_do] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_yield] = ACTIONS(907), + [anon_sym_synchronized] = ACTIONS(907), + [anon_sym_throw] = ACTIONS(907), + [anon_sym_try] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_else] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [anon_sym_open] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_static] = ACTIONS(907), + [anon_sym_package] = ACTIONS(907), + [anon_sym_import] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(907), + [anon_sym_public] = ACTIONS(907), + [anon_sym_protected] = ACTIONS(907), + [anon_sym_private] = ACTIONS(907), + [anon_sym_abstract] = ACTIONS(907), + [anon_sym_strictfp] = ACTIONS(907), + [anon_sym_native] = ACTIONS(907), + [anon_sym_transient] = ACTIONS(907), + [anon_sym_volatile] = ACTIONS(907), + [anon_sym_sealed] = ACTIONS(907), + [anon_sym_non_DASHsealed] = ACTIONS(905), + [anon_sym_record] = ACTIONS(907), + [anon_sym_ATinterface] = ACTIONS(905), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_byte] = ACTIONS(907), + [anon_sym_short] = ACTIONS(907), + [anon_sym_int] = ACTIONS(907), + [anon_sym_long] = ACTIONS(907), + [anon_sym_char] = ACTIONS(907), + [anon_sym_float] = ACTIONS(907), + [anon_sym_double] = ACTIONS(907), + [sym_boolean_type] = ACTIONS(907), + [sym_void_type] = ACTIONS(907), + [sym_this] = ACTIONS(907), + [sym_super] = ACTIONS(907), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(241)] = { + [ts_builtin_sym_end] = ACTIONS(909), + [sym_identifier] = ACTIONS(911), + [sym_decimal_integer_literal] = ACTIONS(911), + [sym_hex_integer_literal] = ACTIONS(911), + [sym_octal_integer_literal] = ACTIONS(911), + [sym_binary_integer_literal] = ACTIONS(909), + [sym_decimal_floating_point_literal] = ACTIONS(909), + [sym_hex_floating_point_literal] = ACTIONS(911), + [sym_true] = ACTIONS(911), + [sym_false] = ACTIONS(911), + [sym_character_literal] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [sym_null_literal] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_final] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_TILDE] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_new] = ACTIONS(911), + [anon_sym_class] = ACTIONS(911), + [anon_sym_switch] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_case] = ACTIONS(911), + [anon_sym_default] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_assert] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_yield] = ACTIONS(911), + [anon_sym_synchronized] = ACTIONS(911), + [anon_sym_throw] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(911), + [anon_sym_open] = ACTIONS(911), + [anon_sym_module] = ACTIONS(911), + [anon_sym_static] = ACTIONS(911), + [anon_sym_package] = ACTIONS(911), + [anon_sym_import] = ACTIONS(911), + [anon_sym_enum] = ACTIONS(911), + [anon_sym_public] = ACTIONS(911), + [anon_sym_protected] = ACTIONS(911), + [anon_sym_private] = ACTIONS(911), + [anon_sym_abstract] = ACTIONS(911), + [anon_sym_strictfp] = ACTIONS(911), + [anon_sym_native] = ACTIONS(911), + [anon_sym_transient] = ACTIONS(911), + [anon_sym_volatile] = ACTIONS(911), + [anon_sym_sealed] = ACTIONS(911), + [anon_sym_non_DASHsealed] = ACTIONS(909), + [anon_sym_record] = ACTIONS(911), + [anon_sym_ATinterface] = ACTIONS(909), + [anon_sym_interface] = ACTIONS(911), + [anon_sym_byte] = ACTIONS(911), + [anon_sym_short] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_long] = ACTIONS(911), + [anon_sym_char] = ACTIONS(911), + [anon_sym_float] = ACTIONS(911), + [anon_sym_double] = ACTIONS(911), + [sym_boolean_type] = ACTIONS(911), + [sym_void_type] = ACTIONS(911), + [sym_this] = ACTIONS(911), + [sym_super] = ACTIONS(911), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(242)] = { + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(915), + [sym_decimal_integer_literal] = ACTIONS(915), + [sym_hex_integer_literal] = ACTIONS(915), + [sym_octal_integer_literal] = ACTIONS(915), + [sym_binary_integer_literal] = ACTIONS(913), + [sym_decimal_floating_point_literal] = ACTIONS(913), + [sym_hex_floating_point_literal] = ACTIONS(915), + [sym_true] = ACTIONS(915), + [sym_false] = ACTIONS(915), + [sym_character_literal] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(915), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [sym_null_literal] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_final] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_new] = ACTIONS(915), + [anon_sym_class] = ACTIONS(915), + [anon_sym_switch] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_case] = ACTIONS(915), + [anon_sym_default] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_assert] = ACTIONS(915), + [anon_sym_do] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_yield] = ACTIONS(915), + [anon_sym_synchronized] = ACTIONS(915), + [anon_sym_throw] = ACTIONS(915), + [anon_sym_try] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_else] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), + [anon_sym_open] = ACTIONS(915), + [anon_sym_module] = ACTIONS(915), + [anon_sym_static] = ACTIONS(915), + [anon_sym_package] = ACTIONS(915), + [anon_sym_import] = ACTIONS(915), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_public] = ACTIONS(915), + [anon_sym_protected] = ACTIONS(915), + [anon_sym_private] = ACTIONS(915), + [anon_sym_abstract] = ACTIONS(915), + [anon_sym_strictfp] = ACTIONS(915), + [anon_sym_native] = ACTIONS(915), + [anon_sym_transient] = ACTIONS(915), + [anon_sym_volatile] = ACTIONS(915), + [anon_sym_sealed] = ACTIONS(915), + [anon_sym_non_DASHsealed] = ACTIONS(913), + [anon_sym_record] = ACTIONS(915), + [anon_sym_ATinterface] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(915), + [anon_sym_byte] = ACTIONS(915), + [anon_sym_short] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_long] = ACTIONS(915), + [anon_sym_char] = ACTIONS(915), + [anon_sym_float] = ACTIONS(915), + [anon_sym_double] = ACTIONS(915), + [sym_boolean_type] = ACTIONS(915), + [sym_void_type] = ACTIONS(915), + [sym_this] = ACTIONS(915), + [sym_super] = ACTIONS(915), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(243)] = { + [ts_builtin_sym_end] = ACTIONS(917), + [sym_identifier] = ACTIONS(919), + [sym_decimal_integer_literal] = ACTIONS(919), + [sym_hex_integer_literal] = ACTIONS(919), + [sym_octal_integer_literal] = ACTIONS(919), + [sym_binary_integer_literal] = ACTIONS(917), + [sym_decimal_floating_point_literal] = ACTIONS(917), + [sym_hex_floating_point_literal] = ACTIONS(919), + [sym_true] = ACTIONS(919), + [sym_false] = ACTIONS(919), + [sym_character_literal] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [sym_null_literal] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_final] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_PLUS_PLUS] = ACTIONS(917), + [anon_sym_DASH_DASH] = ACTIONS(917), + [anon_sym_new] = ACTIONS(919), + [anon_sym_class] = ACTIONS(919), + [anon_sym_switch] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_case] = ACTIONS(919), + [anon_sym_default] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_assert] = ACTIONS(919), + [anon_sym_do] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_break] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_yield] = ACTIONS(919), + [anon_sym_synchronized] = ACTIONS(919), + [anon_sym_throw] = ACTIONS(919), + [anon_sym_try] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_else] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_AT] = ACTIONS(919), + [anon_sym_open] = ACTIONS(919), + [anon_sym_module] = ACTIONS(919), + [anon_sym_static] = ACTIONS(919), + [anon_sym_package] = ACTIONS(919), + [anon_sym_import] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_public] = ACTIONS(919), + [anon_sym_protected] = ACTIONS(919), + [anon_sym_private] = ACTIONS(919), + [anon_sym_abstract] = ACTIONS(919), + [anon_sym_strictfp] = ACTIONS(919), + [anon_sym_native] = ACTIONS(919), + [anon_sym_transient] = ACTIONS(919), + [anon_sym_volatile] = ACTIONS(919), + [anon_sym_sealed] = ACTIONS(919), + [anon_sym_non_DASHsealed] = ACTIONS(917), + [anon_sym_record] = ACTIONS(919), + [anon_sym_ATinterface] = ACTIONS(917), + [anon_sym_interface] = ACTIONS(919), + [anon_sym_byte] = ACTIONS(919), + [anon_sym_short] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_long] = ACTIONS(919), + [anon_sym_char] = ACTIONS(919), + [anon_sym_float] = ACTIONS(919), + [anon_sym_double] = ACTIONS(919), + [sym_boolean_type] = ACTIONS(919), + [sym_void_type] = ACTIONS(919), + [sym_this] = ACTIONS(919), + [sym_super] = ACTIONS(919), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(244)] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(923), + [sym_decimal_integer_literal] = ACTIONS(923), + [sym_hex_integer_literal] = ACTIONS(923), + [sym_octal_integer_literal] = ACTIONS(923), + [sym_binary_integer_literal] = ACTIONS(921), + [sym_decimal_floating_point_literal] = ACTIONS(921), + [sym_hex_floating_point_literal] = ACTIONS(923), + [sym_true] = ACTIONS(923), + [sym_false] = ACTIONS(923), + [sym_character_literal] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(923), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [sym_null_literal] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_final] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_new] = ACTIONS(923), + [anon_sym_class] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_assert] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_synchronized] = ACTIONS(923), + [anon_sym_throw] = ACTIONS(923), + [anon_sym_try] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_else] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [anon_sym_open] = ACTIONS(923), + [anon_sym_module] = ACTIONS(923), + [anon_sym_static] = ACTIONS(923), + [anon_sym_package] = ACTIONS(923), + [anon_sym_import] = ACTIONS(923), + [anon_sym_enum] = ACTIONS(923), + [anon_sym_public] = ACTIONS(923), + [anon_sym_protected] = ACTIONS(923), + [anon_sym_private] = ACTIONS(923), + [anon_sym_abstract] = ACTIONS(923), + [anon_sym_strictfp] = ACTIONS(923), + [anon_sym_native] = ACTIONS(923), + [anon_sym_transient] = ACTIONS(923), + [anon_sym_volatile] = ACTIONS(923), + [anon_sym_sealed] = ACTIONS(923), + [anon_sym_non_DASHsealed] = ACTIONS(921), + [anon_sym_record] = ACTIONS(923), + [anon_sym_ATinterface] = ACTIONS(921), + [anon_sym_interface] = ACTIONS(923), + [anon_sym_byte] = ACTIONS(923), + [anon_sym_short] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_long] = ACTIONS(923), + [anon_sym_char] = ACTIONS(923), + [anon_sym_float] = ACTIONS(923), + [anon_sym_double] = ACTIONS(923), + [sym_boolean_type] = ACTIONS(923), + [sym_void_type] = ACTIONS(923), + [sym_this] = ACTIONS(923), + [sym_super] = ACTIONS(923), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(245)] = { + [ts_builtin_sym_end] = ACTIONS(925), + [sym_identifier] = ACTIONS(927), + [sym_decimal_integer_literal] = ACTIONS(927), + [sym_hex_integer_literal] = ACTIONS(927), + [sym_octal_integer_literal] = ACTIONS(927), + [sym_binary_integer_literal] = ACTIONS(925), + [sym_decimal_floating_point_literal] = ACTIONS(925), + [sym_hex_floating_point_literal] = ACTIONS(927), + [sym_true] = ACTIONS(927), + [sym_false] = ACTIONS(927), + [sym_character_literal] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [sym_null_literal] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_final] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_new] = ACTIONS(927), + [anon_sym_class] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_case] = ACTIONS(927), + [anon_sym_default] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_assert] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_break] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_yield] = ACTIONS(927), + [anon_sym_synchronized] = ACTIONS(927), + [anon_sym_throw] = ACTIONS(927), + [anon_sym_try] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_else] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_AT] = ACTIONS(927), + [anon_sym_open] = ACTIONS(927), + [anon_sym_module] = ACTIONS(927), + [anon_sym_static] = ACTIONS(927), + [anon_sym_package] = ACTIONS(927), + [anon_sym_import] = ACTIONS(927), + [anon_sym_enum] = ACTIONS(927), + [anon_sym_public] = ACTIONS(927), + [anon_sym_protected] = ACTIONS(927), + [anon_sym_private] = ACTIONS(927), + [anon_sym_abstract] = ACTIONS(927), + [anon_sym_strictfp] = ACTIONS(927), + [anon_sym_native] = ACTIONS(927), + [anon_sym_transient] = ACTIONS(927), + [anon_sym_volatile] = ACTIONS(927), + [anon_sym_sealed] = ACTIONS(927), + [anon_sym_non_DASHsealed] = ACTIONS(925), + [anon_sym_record] = ACTIONS(927), + [anon_sym_ATinterface] = ACTIONS(925), + [anon_sym_interface] = ACTIONS(927), + [anon_sym_byte] = ACTIONS(927), + [anon_sym_short] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_long] = ACTIONS(927), + [anon_sym_char] = ACTIONS(927), + [anon_sym_float] = ACTIONS(927), + [anon_sym_double] = ACTIONS(927), + [sym_boolean_type] = ACTIONS(927), + [sym_void_type] = ACTIONS(927), + [sym_this] = ACTIONS(927), + [sym_super] = ACTIONS(927), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(246)] = { + [ts_builtin_sym_end] = ACTIONS(929), + [sym_identifier] = ACTIONS(931), + [sym_decimal_integer_literal] = ACTIONS(931), + [sym_hex_integer_literal] = ACTIONS(931), + [sym_octal_integer_literal] = ACTIONS(931), + [sym_binary_integer_literal] = ACTIONS(929), + [sym_decimal_floating_point_literal] = ACTIONS(929), + [sym_hex_floating_point_literal] = ACTIONS(931), + [sym_true] = ACTIONS(931), + [sym_false] = ACTIONS(931), + [sym_character_literal] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [sym_null_literal] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_final] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [anon_sym_new] = ACTIONS(931), + [anon_sym_class] = ACTIONS(931), + [anon_sym_switch] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_case] = ACTIONS(931), + [anon_sym_default] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_assert] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(931), + [anon_sym_synchronized] = ACTIONS(931), + [anon_sym_throw] = ACTIONS(931), + [anon_sym_try] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [anon_sym_open] = ACTIONS(931), + [anon_sym_module] = ACTIONS(931), + [anon_sym_static] = ACTIONS(931), + [anon_sym_package] = ACTIONS(931), + [anon_sym_import] = ACTIONS(931), + [anon_sym_enum] = ACTIONS(931), + [anon_sym_public] = ACTIONS(931), + [anon_sym_protected] = ACTIONS(931), + [anon_sym_private] = ACTIONS(931), + [anon_sym_abstract] = ACTIONS(931), + [anon_sym_strictfp] = ACTIONS(931), + [anon_sym_native] = ACTIONS(931), + [anon_sym_transient] = ACTIONS(931), + [anon_sym_volatile] = ACTIONS(931), + [anon_sym_sealed] = ACTIONS(931), + [anon_sym_non_DASHsealed] = ACTIONS(929), + [anon_sym_record] = ACTIONS(931), + [anon_sym_ATinterface] = ACTIONS(929), + [anon_sym_interface] = ACTIONS(931), + [anon_sym_byte] = ACTIONS(931), + [anon_sym_short] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_long] = ACTIONS(931), + [anon_sym_char] = ACTIONS(931), + [anon_sym_float] = ACTIONS(931), + [anon_sym_double] = ACTIONS(931), + [sym_boolean_type] = ACTIONS(931), + [sym_void_type] = ACTIONS(931), + [sym_this] = ACTIONS(931), + [sym_super] = ACTIONS(931), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(247)] = { + [ts_builtin_sym_end] = ACTIONS(933), + [sym_identifier] = ACTIONS(935), + [sym_decimal_integer_literal] = ACTIONS(935), + [sym_hex_integer_literal] = ACTIONS(935), + [sym_octal_integer_literal] = ACTIONS(935), + [sym_binary_integer_literal] = ACTIONS(933), + [sym_decimal_floating_point_literal] = ACTIONS(933), + [sym_hex_floating_point_literal] = ACTIONS(935), + [sym_true] = ACTIONS(935), + [sym_false] = ACTIONS(935), + [sym_character_literal] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(935), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [sym_null_literal] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_final] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_new] = ACTIONS(935), + [anon_sym_class] = ACTIONS(935), + [anon_sym_switch] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_case] = ACTIONS(935), + [anon_sym_default] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_assert] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(935), + [anon_sym_synchronized] = ACTIONS(935), + [anon_sym_throw] = ACTIONS(935), + [anon_sym_try] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_AT] = ACTIONS(935), + [anon_sym_open] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_static] = ACTIONS(935), + [anon_sym_package] = ACTIONS(935), + [anon_sym_import] = ACTIONS(935), + [anon_sym_enum] = ACTIONS(935), + [anon_sym_public] = ACTIONS(935), + [anon_sym_protected] = ACTIONS(935), + [anon_sym_private] = ACTIONS(935), + [anon_sym_abstract] = ACTIONS(935), + [anon_sym_strictfp] = ACTIONS(935), + [anon_sym_native] = ACTIONS(935), + [anon_sym_transient] = ACTIONS(935), + [anon_sym_volatile] = ACTIONS(935), + [anon_sym_sealed] = ACTIONS(935), + [anon_sym_non_DASHsealed] = ACTIONS(933), + [anon_sym_record] = ACTIONS(935), + [anon_sym_ATinterface] = ACTIONS(933), + [anon_sym_interface] = ACTIONS(935), + [anon_sym_byte] = ACTIONS(935), + [anon_sym_short] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_long] = ACTIONS(935), + [anon_sym_char] = ACTIONS(935), + [anon_sym_float] = ACTIONS(935), + [anon_sym_double] = ACTIONS(935), + [sym_boolean_type] = ACTIONS(935), + [sym_void_type] = ACTIONS(935), + [sym_this] = ACTIONS(935), + [sym_super] = ACTIONS(935), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(248)] = { + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(939), + [sym_decimal_integer_literal] = ACTIONS(939), + [sym_hex_integer_literal] = ACTIONS(939), + [sym_octal_integer_literal] = ACTIONS(939), + [sym_binary_integer_literal] = ACTIONS(937), + [sym_decimal_floating_point_literal] = ACTIONS(937), + [sym_hex_floating_point_literal] = ACTIONS(939), + [sym_true] = ACTIONS(939), + [sym_false] = ACTIONS(939), + [sym_character_literal] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [sym_null_literal] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_final] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_PLUS_PLUS] = ACTIONS(937), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_new] = ACTIONS(939), + [anon_sym_class] = ACTIONS(939), + [anon_sym_switch] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_default] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_assert] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_synchronized] = ACTIONS(939), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_try] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_else] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(939), + [anon_sym_open] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_static] = ACTIONS(939), + [anon_sym_package] = ACTIONS(939), + [anon_sym_import] = ACTIONS(939), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_public] = ACTIONS(939), + [anon_sym_protected] = ACTIONS(939), + [anon_sym_private] = ACTIONS(939), + [anon_sym_abstract] = ACTIONS(939), + [anon_sym_strictfp] = ACTIONS(939), + [anon_sym_native] = ACTIONS(939), + [anon_sym_transient] = ACTIONS(939), + [anon_sym_volatile] = ACTIONS(939), + [anon_sym_sealed] = ACTIONS(939), + [anon_sym_non_DASHsealed] = ACTIONS(937), + [anon_sym_record] = ACTIONS(939), + [anon_sym_ATinterface] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(939), + [anon_sym_byte] = ACTIONS(939), + [anon_sym_short] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_long] = ACTIONS(939), + [anon_sym_char] = ACTIONS(939), + [anon_sym_float] = ACTIONS(939), + [anon_sym_double] = ACTIONS(939), + [sym_boolean_type] = ACTIONS(939), + [sym_void_type] = ACTIONS(939), + [sym_this] = ACTIONS(939), + [sym_super] = ACTIONS(939), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(249)] = { + [ts_builtin_sym_end] = ACTIONS(941), + [sym_identifier] = ACTIONS(943), + [sym_decimal_integer_literal] = ACTIONS(943), + [sym_hex_integer_literal] = ACTIONS(943), + [sym_octal_integer_literal] = ACTIONS(943), + [sym_binary_integer_literal] = ACTIONS(941), + [sym_decimal_floating_point_literal] = ACTIONS(941), + [sym_hex_floating_point_literal] = ACTIONS(943), + [sym_true] = ACTIONS(943), + [sym_false] = ACTIONS(943), + [sym_character_literal] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(943), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [sym_null_literal] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_final] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_new] = ACTIONS(943), + [anon_sym_class] = ACTIONS(943), + [anon_sym_switch] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_case] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_assert] = ACTIONS(943), + [anon_sym_do] = ACTIONS(943), + [anon_sym_while] = ACTIONS(943), + [anon_sym_break] = ACTIONS(943), + [anon_sym_continue] = ACTIONS(943), + [anon_sym_return] = ACTIONS(943), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_synchronized] = ACTIONS(943), + [anon_sym_throw] = ACTIONS(943), + [anon_sym_try] = ACTIONS(943), + [anon_sym_if] = ACTIONS(943), + [anon_sym_else] = ACTIONS(943), + [anon_sym_for] = ACTIONS(943), + [anon_sym_AT] = ACTIONS(943), + [anon_sym_open] = ACTIONS(943), + [anon_sym_module] = ACTIONS(943), + [anon_sym_static] = ACTIONS(943), + [anon_sym_package] = ACTIONS(943), + [anon_sym_import] = ACTIONS(943), + [anon_sym_enum] = ACTIONS(943), + [anon_sym_public] = ACTIONS(943), + [anon_sym_protected] = ACTIONS(943), + [anon_sym_private] = ACTIONS(943), + [anon_sym_abstract] = ACTIONS(943), + [anon_sym_strictfp] = ACTIONS(943), + [anon_sym_native] = ACTIONS(943), + [anon_sym_transient] = ACTIONS(943), + [anon_sym_volatile] = ACTIONS(943), + [anon_sym_sealed] = ACTIONS(943), + [anon_sym_non_DASHsealed] = ACTIONS(941), + [anon_sym_record] = ACTIONS(943), + [anon_sym_ATinterface] = ACTIONS(941), + [anon_sym_interface] = ACTIONS(943), + [anon_sym_byte] = ACTIONS(943), + [anon_sym_short] = ACTIONS(943), + [anon_sym_int] = ACTIONS(943), + [anon_sym_long] = ACTIONS(943), + [anon_sym_char] = ACTIONS(943), + [anon_sym_float] = ACTIONS(943), + [anon_sym_double] = ACTIONS(943), + [sym_boolean_type] = ACTIONS(943), + [sym_void_type] = ACTIONS(943), + [sym_this] = ACTIONS(943), + [sym_super] = ACTIONS(943), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(250)] = { + [ts_builtin_sym_end] = ACTIONS(945), + [sym_identifier] = ACTIONS(947), + [sym_decimal_integer_literal] = ACTIONS(947), + [sym_hex_integer_literal] = ACTIONS(947), + [sym_octal_integer_literal] = ACTIONS(947), + [sym_binary_integer_literal] = ACTIONS(945), + [sym_decimal_floating_point_literal] = ACTIONS(945), + [sym_hex_floating_point_literal] = ACTIONS(947), + [sym_true] = ACTIONS(947), + [sym_false] = ACTIONS(947), + [sym_character_literal] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(947), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [sym_null_literal] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_final] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(945), + [anon_sym_PLUS_PLUS] = ACTIONS(945), + [anon_sym_DASH_DASH] = ACTIONS(945), + [anon_sym_new] = ACTIONS(947), + [anon_sym_class] = ACTIONS(947), + [anon_sym_switch] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_case] = ACTIONS(947), + [anon_sym_default] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_assert] = ACTIONS(947), + [anon_sym_do] = ACTIONS(947), + [anon_sym_while] = ACTIONS(947), + [anon_sym_break] = ACTIONS(947), + [anon_sym_continue] = ACTIONS(947), + [anon_sym_return] = ACTIONS(947), + [anon_sym_yield] = ACTIONS(947), + [anon_sym_synchronized] = ACTIONS(947), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_try] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_else] = ACTIONS(947), + [anon_sym_for] = ACTIONS(947), + [anon_sym_AT] = ACTIONS(947), + [anon_sym_open] = ACTIONS(947), + [anon_sym_module] = ACTIONS(947), + [anon_sym_static] = ACTIONS(947), + [anon_sym_package] = ACTIONS(947), + [anon_sym_import] = ACTIONS(947), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_public] = ACTIONS(947), + [anon_sym_protected] = ACTIONS(947), + [anon_sym_private] = ACTIONS(947), + [anon_sym_abstract] = ACTIONS(947), + [anon_sym_strictfp] = ACTIONS(947), + [anon_sym_native] = ACTIONS(947), + [anon_sym_transient] = ACTIONS(947), + [anon_sym_volatile] = ACTIONS(947), + [anon_sym_sealed] = ACTIONS(947), + [anon_sym_non_DASHsealed] = ACTIONS(945), + [anon_sym_record] = ACTIONS(947), + [anon_sym_ATinterface] = ACTIONS(945), + [anon_sym_interface] = ACTIONS(947), + [anon_sym_byte] = ACTIONS(947), + [anon_sym_short] = ACTIONS(947), + [anon_sym_int] = ACTIONS(947), + [anon_sym_long] = ACTIONS(947), + [anon_sym_char] = ACTIONS(947), + [anon_sym_float] = ACTIONS(947), + [anon_sym_double] = ACTIONS(947), + [sym_boolean_type] = ACTIONS(947), + [sym_void_type] = ACTIONS(947), + [sym_this] = ACTIONS(947), + [sym_super] = ACTIONS(947), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(251)] = { + [ts_builtin_sym_end] = ACTIONS(949), + [sym_identifier] = ACTIONS(951), + [sym_decimal_integer_literal] = ACTIONS(951), + [sym_hex_integer_literal] = ACTIONS(951), + [sym_octal_integer_literal] = ACTIONS(951), + [sym_binary_integer_literal] = ACTIONS(949), + [sym_decimal_floating_point_literal] = ACTIONS(949), + [sym_hex_floating_point_literal] = ACTIONS(951), + [sym_true] = ACTIONS(951), + [sym_false] = ACTIONS(951), + [sym_character_literal] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [sym_null_literal] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_final] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_TILDE] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [anon_sym_new] = ACTIONS(951), + [anon_sym_class] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_case] = ACTIONS(951), + [anon_sym_default] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_assert] = ACTIONS(951), + [anon_sym_do] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_yield] = ACTIONS(951), + [anon_sym_synchronized] = ACTIONS(951), + [anon_sym_throw] = ACTIONS(951), + [anon_sym_try] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_else] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_AT] = ACTIONS(951), + [anon_sym_open] = ACTIONS(951), + [anon_sym_module] = ACTIONS(951), + [anon_sym_static] = ACTIONS(951), + [anon_sym_package] = ACTIONS(951), + [anon_sym_import] = ACTIONS(951), + [anon_sym_enum] = ACTIONS(951), + [anon_sym_public] = ACTIONS(951), + [anon_sym_protected] = ACTIONS(951), + [anon_sym_private] = ACTIONS(951), + [anon_sym_abstract] = ACTIONS(951), + [anon_sym_strictfp] = ACTIONS(951), + [anon_sym_native] = ACTIONS(951), + [anon_sym_transient] = ACTIONS(951), + [anon_sym_volatile] = ACTIONS(951), + [anon_sym_sealed] = ACTIONS(951), + [anon_sym_non_DASHsealed] = ACTIONS(949), + [anon_sym_record] = ACTIONS(951), + [anon_sym_ATinterface] = ACTIONS(949), + [anon_sym_interface] = ACTIONS(951), + [anon_sym_byte] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_int] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_char] = ACTIONS(951), + [anon_sym_float] = ACTIONS(951), + [anon_sym_double] = ACTIONS(951), + [sym_boolean_type] = ACTIONS(951), + [sym_void_type] = ACTIONS(951), + [sym_this] = ACTIONS(951), + [sym_super] = ACTIONS(951), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(252)] = { + [ts_builtin_sym_end] = ACTIONS(953), + [sym_identifier] = ACTIONS(955), + [sym_decimal_integer_literal] = ACTIONS(955), + [sym_hex_integer_literal] = ACTIONS(955), + [sym_octal_integer_literal] = ACTIONS(955), + [sym_binary_integer_literal] = ACTIONS(953), + [sym_decimal_floating_point_literal] = ACTIONS(953), + [sym_hex_floating_point_literal] = ACTIONS(955), + [sym_true] = ACTIONS(955), + [sym_false] = ACTIONS(955), + [sym_character_literal] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(955), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [sym_null_literal] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_final] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_TILDE] = ACTIONS(953), + [anon_sym_PLUS_PLUS] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(953), + [anon_sym_new] = ACTIONS(955), + [anon_sym_class] = ACTIONS(955), + [anon_sym_switch] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_case] = ACTIONS(955), + [anon_sym_default] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_assert] = ACTIONS(955), + [anon_sym_do] = ACTIONS(955), + [anon_sym_while] = ACTIONS(955), + [anon_sym_break] = ACTIONS(955), + [anon_sym_continue] = ACTIONS(955), + [anon_sym_return] = ACTIONS(955), + [anon_sym_yield] = ACTIONS(955), + [anon_sym_synchronized] = ACTIONS(955), + [anon_sym_throw] = ACTIONS(955), + [anon_sym_try] = ACTIONS(955), + [anon_sym_if] = ACTIONS(955), + [anon_sym_else] = ACTIONS(955), + [anon_sym_for] = ACTIONS(955), + [anon_sym_AT] = ACTIONS(955), + [anon_sym_open] = ACTIONS(955), + [anon_sym_module] = ACTIONS(955), + [anon_sym_static] = ACTIONS(955), + [anon_sym_package] = ACTIONS(955), + [anon_sym_import] = ACTIONS(955), + [anon_sym_enum] = ACTIONS(955), + [anon_sym_public] = ACTIONS(955), + [anon_sym_protected] = ACTIONS(955), + [anon_sym_private] = ACTIONS(955), + [anon_sym_abstract] = ACTIONS(955), + [anon_sym_strictfp] = ACTIONS(955), + [anon_sym_native] = ACTIONS(955), + [anon_sym_transient] = ACTIONS(955), + [anon_sym_volatile] = ACTIONS(955), + [anon_sym_sealed] = ACTIONS(955), + [anon_sym_non_DASHsealed] = ACTIONS(953), + [anon_sym_record] = ACTIONS(955), + [anon_sym_ATinterface] = ACTIONS(953), + [anon_sym_interface] = ACTIONS(955), + [anon_sym_byte] = ACTIONS(955), + [anon_sym_short] = ACTIONS(955), + [anon_sym_int] = ACTIONS(955), + [anon_sym_long] = ACTIONS(955), + [anon_sym_char] = ACTIONS(955), + [anon_sym_float] = ACTIONS(955), + [anon_sym_double] = ACTIONS(955), + [sym_boolean_type] = ACTIONS(955), + [sym_void_type] = ACTIONS(955), + [sym_this] = ACTIONS(955), + [sym_super] = ACTIONS(955), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(253)] = { + [ts_builtin_sym_end] = ACTIONS(957), + [sym_identifier] = ACTIONS(959), + [sym_decimal_integer_literal] = ACTIONS(959), + [sym_hex_integer_literal] = ACTIONS(959), + [sym_octal_integer_literal] = ACTIONS(959), + [sym_binary_integer_literal] = ACTIONS(957), + [sym_decimal_floating_point_literal] = ACTIONS(957), + [sym_hex_floating_point_literal] = ACTIONS(959), + [sym_true] = ACTIONS(959), + [sym_false] = ACTIONS(959), + [sym_character_literal] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [sym_null_literal] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_final] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_new] = ACTIONS(959), + [anon_sym_class] = ACTIONS(959), + [anon_sym_switch] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_case] = ACTIONS(959), + [anon_sym_default] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(957), + [anon_sym_assert] = ACTIONS(959), + [anon_sym_do] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_yield] = ACTIONS(959), + [anon_sym_synchronized] = ACTIONS(959), + [anon_sym_throw] = ACTIONS(959), + [anon_sym_try] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_else] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_AT] = ACTIONS(959), + [anon_sym_open] = ACTIONS(959), + [anon_sym_module] = ACTIONS(959), + [anon_sym_static] = ACTIONS(959), + [anon_sym_package] = ACTIONS(959), + [anon_sym_import] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(959), + [anon_sym_public] = ACTIONS(959), + [anon_sym_protected] = ACTIONS(959), + [anon_sym_private] = ACTIONS(959), + [anon_sym_abstract] = ACTIONS(959), + [anon_sym_strictfp] = ACTIONS(959), + [anon_sym_native] = ACTIONS(959), + [anon_sym_transient] = ACTIONS(959), + [anon_sym_volatile] = ACTIONS(959), + [anon_sym_sealed] = ACTIONS(959), + [anon_sym_non_DASHsealed] = ACTIONS(957), + [anon_sym_record] = ACTIONS(959), + [anon_sym_ATinterface] = ACTIONS(957), + [anon_sym_interface] = ACTIONS(959), + [anon_sym_byte] = ACTIONS(959), + [anon_sym_short] = ACTIONS(959), + [anon_sym_int] = ACTIONS(959), + [anon_sym_long] = ACTIONS(959), + [anon_sym_char] = ACTIONS(959), + [anon_sym_float] = ACTIONS(959), + [anon_sym_double] = ACTIONS(959), + [sym_boolean_type] = ACTIONS(959), + [sym_void_type] = ACTIONS(959), + [sym_this] = ACTIONS(959), + [sym_super] = ACTIONS(959), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(763), - [sym_identifier] = ACTIONS(765), - [sym_decimal_integer_literal] = ACTIONS(765), - [sym_hex_integer_literal] = ACTIONS(765), - [sym_octal_integer_literal] = ACTIONS(765), - [sym_binary_integer_literal] = ACTIONS(763), - [sym_decimal_floating_point_literal] = ACTIONS(763), - [sym_hex_floating_point_literal] = ACTIONS(765), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_character_literal] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [sym_null_literal] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_final] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(763), - [anon_sym_DASH_DASH] = ACTIONS(763), - [anon_sym_new] = ACTIONS(765), - [anon_sym_class] = ACTIONS(765), - [anon_sym_switch] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_case] = ACTIONS(765), - [anon_sym_default] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_assert] = ACTIONS(765), - [anon_sym_do] = ACTIONS(765), - [anon_sym_while] = ACTIONS(765), - [anon_sym_break] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(765), - [anon_sym_return] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(765), - [anon_sym_synchronized] = ACTIONS(765), - [anon_sym_throw] = ACTIONS(765), - [anon_sym_try] = ACTIONS(765), - [anon_sym_if] = ACTIONS(765), - [anon_sym_else] = ACTIONS(765), - [anon_sym_for] = ACTIONS(765), - [anon_sym_AT] = ACTIONS(765), - [anon_sym_open] = ACTIONS(765), - [anon_sym_module] = ACTIONS(765), - [anon_sym_static] = ACTIONS(765), - [anon_sym_with] = ACTIONS(765), - [anon_sym_package] = ACTIONS(765), - [anon_sym_import] = ACTIONS(765), - [anon_sym_enum] = ACTIONS(765), - [anon_sym_public] = ACTIONS(765), - [anon_sym_protected] = ACTIONS(765), - [anon_sym_private] = ACTIONS(765), - [anon_sym_abstract] = ACTIONS(765), - [anon_sym_strictfp] = ACTIONS(765), - [anon_sym_native] = ACTIONS(765), - [anon_sym_transient] = ACTIONS(765), - [anon_sym_volatile] = ACTIONS(765), - [anon_sym_sealed] = ACTIONS(765), - [anon_sym_non_DASHsealed] = ACTIONS(763), - [anon_sym_record] = ACTIONS(765), - [anon_sym_ATinterface] = ACTIONS(763), - [anon_sym_interface] = ACTIONS(765), - [anon_sym_byte] = ACTIONS(765), - [anon_sym_short] = ACTIONS(765), - [anon_sym_int] = ACTIONS(765), - [anon_sym_long] = ACTIONS(765), - [anon_sym_char] = ACTIONS(765), - [anon_sym_float] = ACTIONS(765), - [anon_sym_double] = ACTIONS(765), - [sym_boolean_type] = ACTIONS(765), - [sym_void_type] = ACTIONS(765), - [sym_this] = ACTIONS(765), - [sym_super] = ACTIONS(765), + [STATE(254)] = { + [ts_builtin_sym_end] = ACTIONS(961), + [sym_identifier] = ACTIONS(963), + [sym_decimal_integer_literal] = ACTIONS(963), + [sym_hex_integer_literal] = ACTIONS(963), + [sym_octal_integer_literal] = ACTIONS(963), + [sym_binary_integer_literal] = ACTIONS(961), + [sym_decimal_floating_point_literal] = ACTIONS(961), + [sym_hex_floating_point_literal] = ACTIONS(963), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + [sym_character_literal] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(963), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [sym_null_literal] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_final] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_TILDE] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_new] = ACTIONS(963), + [anon_sym_class] = ACTIONS(963), + [anon_sym_switch] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_case] = ACTIONS(963), + [anon_sym_default] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_assert] = ACTIONS(963), + [anon_sym_do] = ACTIONS(963), + [anon_sym_while] = ACTIONS(963), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_yield] = ACTIONS(963), + [anon_sym_synchronized] = ACTIONS(963), + [anon_sym_throw] = ACTIONS(963), + [anon_sym_try] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_else] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), + [anon_sym_open] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_static] = ACTIONS(963), + [anon_sym_package] = ACTIONS(963), + [anon_sym_import] = ACTIONS(963), + [anon_sym_enum] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_abstract] = ACTIONS(963), + [anon_sym_strictfp] = ACTIONS(963), + [anon_sym_native] = ACTIONS(963), + [anon_sym_transient] = ACTIONS(963), + [anon_sym_volatile] = ACTIONS(963), + [anon_sym_sealed] = ACTIONS(963), + [anon_sym_non_DASHsealed] = ACTIONS(961), + [anon_sym_record] = ACTIONS(963), + [anon_sym_ATinterface] = ACTIONS(961), + [anon_sym_interface] = ACTIONS(963), + [anon_sym_byte] = ACTIONS(963), + [anon_sym_short] = ACTIONS(963), + [anon_sym_int] = ACTIONS(963), + [anon_sym_long] = ACTIONS(963), + [anon_sym_char] = ACTIONS(963), + [anon_sym_float] = ACTIONS(963), + [anon_sym_double] = ACTIONS(963), + [sym_boolean_type] = ACTIONS(963), + [sym_void_type] = ACTIONS(963), + [sym_this] = ACTIONS(963), + [sym_super] = ACTIONS(963), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [281] = { - [ts_builtin_sym_end] = ACTIONS(767), - [sym_identifier] = ACTIONS(769), - [sym_decimal_integer_literal] = ACTIONS(769), - [sym_hex_integer_literal] = ACTIONS(769), - [sym_octal_integer_literal] = ACTIONS(769), - [sym_binary_integer_literal] = ACTIONS(767), - [sym_decimal_floating_point_literal] = ACTIONS(767), - [sym_hex_floating_point_literal] = ACTIONS(769), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_character_literal] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(769), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [sym_null_literal] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_LT] = ACTIONS(767), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_final] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(767), - [anon_sym_DASH_DASH] = ACTIONS(767), - [anon_sym_new] = ACTIONS(769), - [anon_sym_class] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_case] = ACTIONS(769), - [anon_sym_default] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_do] = ACTIONS(769), - [anon_sym_while] = ACTIONS(769), - [anon_sym_break] = ACTIONS(769), - [anon_sym_continue] = ACTIONS(769), - [anon_sym_return] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(769), - [anon_sym_synchronized] = ACTIONS(769), - [anon_sym_throw] = ACTIONS(769), - [anon_sym_try] = ACTIONS(769), - [anon_sym_if] = ACTIONS(769), - [anon_sym_else] = ACTIONS(769), - [anon_sym_for] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym_open] = ACTIONS(769), - [anon_sym_module] = ACTIONS(769), - [anon_sym_static] = ACTIONS(769), - [anon_sym_with] = ACTIONS(769), - [anon_sym_package] = ACTIONS(769), - [anon_sym_import] = ACTIONS(769), - [anon_sym_enum] = ACTIONS(769), - [anon_sym_public] = ACTIONS(769), - [anon_sym_protected] = ACTIONS(769), - [anon_sym_private] = ACTIONS(769), - [anon_sym_abstract] = ACTIONS(769), - [anon_sym_strictfp] = ACTIONS(769), - [anon_sym_native] = ACTIONS(769), - [anon_sym_transient] = ACTIONS(769), - [anon_sym_volatile] = ACTIONS(769), - [anon_sym_sealed] = ACTIONS(769), - [anon_sym_non_DASHsealed] = ACTIONS(767), - [anon_sym_record] = ACTIONS(769), - [anon_sym_ATinterface] = ACTIONS(767), - [anon_sym_interface] = ACTIONS(769), - [anon_sym_byte] = ACTIONS(769), - [anon_sym_short] = ACTIONS(769), - [anon_sym_int] = ACTIONS(769), - [anon_sym_long] = ACTIONS(769), - [anon_sym_char] = ACTIONS(769), - [anon_sym_float] = ACTIONS(769), - [anon_sym_double] = ACTIONS(769), - [sym_boolean_type] = ACTIONS(769), - [sym_void_type] = ACTIONS(769), - [sym_this] = ACTIONS(769), - [sym_super] = ACTIONS(769), + [STATE(255)] = { + [ts_builtin_sym_end] = ACTIONS(965), + [sym_identifier] = ACTIONS(967), + [sym_decimal_integer_literal] = ACTIONS(967), + [sym_hex_integer_literal] = ACTIONS(967), + [sym_octal_integer_literal] = ACTIONS(967), + [sym_binary_integer_literal] = ACTIONS(965), + [sym_decimal_floating_point_literal] = ACTIONS(965), + [sym_hex_floating_point_literal] = ACTIONS(967), + [sym_true] = ACTIONS(967), + [sym_false] = ACTIONS(967), + [sym_character_literal] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(967), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [sym_null_literal] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_final] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(965), + [anon_sym_new] = ACTIONS(967), + [anon_sym_class] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_case] = ACTIONS(967), + [anon_sym_default] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_assert] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_synchronized] = ACTIONS(967), + [anon_sym_throw] = ACTIONS(967), + [anon_sym_try] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym_open] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_static] = ACTIONS(967), + [anon_sym_package] = ACTIONS(967), + [anon_sym_import] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(967), + [anon_sym_public] = ACTIONS(967), + [anon_sym_protected] = ACTIONS(967), + [anon_sym_private] = ACTIONS(967), + [anon_sym_abstract] = ACTIONS(967), + [anon_sym_strictfp] = ACTIONS(967), + [anon_sym_native] = ACTIONS(967), + [anon_sym_transient] = ACTIONS(967), + [anon_sym_volatile] = ACTIONS(967), + [anon_sym_sealed] = ACTIONS(967), + [anon_sym_non_DASHsealed] = ACTIONS(965), + [anon_sym_record] = ACTIONS(967), + [anon_sym_ATinterface] = ACTIONS(965), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_byte] = ACTIONS(967), + [anon_sym_short] = ACTIONS(967), + [anon_sym_int] = ACTIONS(967), + [anon_sym_long] = ACTIONS(967), + [anon_sym_char] = ACTIONS(967), + [anon_sym_float] = ACTIONS(967), + [anon_sym_double] = ACTIONS(967), + [sym_boolean_type] = ACTIONS(967), + [sym_void_type] = ACTIONS(967), + [sym_this] = ACTIONS(967), + [sym_super] = ACTIONS(967), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(771), - [sym_identifier] = ACTIONS(773), - [sym_decimal_integer_literal] = ACTIONS(773), - [sym_hex_integer_literal] = ACTIONS(773), - [sym_octal_integer_literal] = ACTIONS(773), - [sym_binary_integer_literal] = ACTIONS(771), - [sym_decimal_floating_point_literal] = ACTIONS(771), - [sym_hex_floating_point_literal] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_character_literal] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [sym_null_literal] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(771), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(773), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_final] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_PLUS_PLUS] = ACTIONS(771), - [anon_sym_DASH_DASH] = ACTIONS(771), - [anon_sym_new] = ACTIONS(773), - [anon_sym_class] = ACTIONS(773), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_case] = ACTIONS(773), - [anon_sym_default] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_assert] = ACTIONS(773), - [anon_sym_do] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_break] = ACTIONS(773), - [anon_sym_continue] = ACTIONS(773), - [anon_sym_return] = ACTIONS(773), - [anon_sym_yield] = ACTIONS(773), - [anon_sym_synchronized] = ACTIONS(773), - [anon_sym_throw] = ACTIONS(773), - [anon_sym_try] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_else] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym_open] = ACTIONS(773), - [anon_sym_module] = ACTIONS(773), - [anon_sym_static] = ACTIONS(773), - [anon_sym_with] = ACTIONS(773), - [anon_sym_package] = ACTIONS(773), - [anon_sym_import] = ACTIONS(773), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_public] = ACTIONS(773), - [anon_sym_protected] = ACTIONS(773), - [anon_sym_private] = ACTIONS(773), - [anon_sym_abstract] = ACTIONS(773), - [anon_sym_strictfp] = ACTIONS(773), - [anon_sym_native] = ACTIONS(773), - [anon_sym_transient] = ACTIONS(773), - [anon_sym_volatile] = ACTIONS(773), - [anon_sym_sealed] = ACTIONS(773), - [anon_sym_non_DASHsealed] = ACTIONS(771), - [anon_sym_record] = ACTIONS(773), - [anon_sym_ATinterface] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_byte] = ACTIONS(773), - [anon_sym_short] = ACTIONS(773), - [anon_sym_int] = ACTIONS(773), - [anon_sym_long] = ACTIONS(773), - [anon_sym_char] = ACTIONS(773), - [anon_sym_float] = ACTIONS(773), - [anon_sym_double] = ACTIONS(773), - [sym_boolean_type] = ACTIONS(773), - [sym_void_type] = ACTIONS(773), - [sym_this] = ACTIONS(773), - [sym_super] = ACTIONS(773), + [STATE(256)] = { + [ts_builtin_sym_end] = ACTIONS(969), + [sym_identifier] = ACTIONS(971), + [sym_decimal_integer_literal] = ACTIONS(971), + [sym_hex_integer_literal] = ACTIONS(971), + [sym_octal_integer_literal] = ACTIONS(971), + [sym_binary_integer_literal] = ACTIONS(969), + [sym_decimal_floating_point_literal] = ACTIONS(969), + [sym_hex_floating_point_literal] = ACTIONS(971), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_character_literal] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(971), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [sym_null_literal] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_final] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_TILDE] = ACTIONS(969), + [anon_sym_PLUS_PLUS] = ACTIONS(969), + [anon_sym_DASH_DASH] = ACTIONS(969), + [anon_sym_new] = ACTIONS(971), + [anon_sym_class] = ACTIONS(971), + [anon_sym_switch] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_case] = ACTIONS(971), + [anon_sym_default] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_assert] = ACTIONS(971), + [anon_sym_do] = ACTIONS(971), + [anon_sym_while] = ACTIONS(971), + [anon_sym_break] = ACTIONS(971), + [anon_sym_continue] = ACTIONS(971), + [anon_sym_return] = ACTIONS(971), + [anon_sym_yield] = ACTIONS(971), + [anon_sym_synchronized] = ACTIONS(971), + [anon_sym_throw] = ACTIONS(971), + [anon_sym_try] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_else] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_AT] = ACTIONS(971), + [anon_sym_open] = ACTIONS(971), + [anon_sym_module] = ACTIONS(971), + [anon_sym_static] = ACTIONS(971), + [anon_sym_package] = ACTIONS(971), + [anon_sym_import] = ACTIONS(971), + [anon_sym_enum] = ACTIONS(971), + [anon_sym_public] = ACTIONS(971), + [anon_sym_protected] = ACTIONS(971), + [anon_sym_private] = ACTIONS(971), + [anon_sym_abstract] = ACTIONS(971), + [anon_sym_strictfp] = ACTIONS(971), + [anon_sym_native] = ACTIONS(971), + [anon_sym_transient] = ACTIONS(971), + [anon_sym_volatile] = ACTIONS(971), + [anon_sym_sealed] = ACTIONS(971), + [anon_sym_non_DASHsealed] = ACTIONS(969), + [anon_sym_record] = ACTIONS(971), + [anon_sym_ATinterface] = ACTIONS(969), + [anon_sym_interface] = ACTIONS(971), + [anon_sym_byte] = ACTIONS(971), + [anon_sym_short] = ACTIONS(971), + [anon_sym_int] = ACTIONS(971), + [anon_sym_long] = ACTIONS(971), + [anon_sym_char] = ACTIONS(971), + [anon_sym_float] = ACTIONS(971), + [anon_sym_double] = ACTIONS(971), + [sym_boolean_type] = ACTIONS(971), + [sym_void_type] = ACTIONS(971), + [sym_this] = ACTIONS(971), + [sym_super] = ACTIONS(971), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(775), - [sym_identifier] = ACTIONS(777), - [sym_decimal_integer_literal] = ACTIONS(777), - [sym_hex_integer_literal] = ACTIONS(777), - [sym_octal_integer_literal] = ACTIONS(777), - [sym_binary_integer_literal] = ACTIONS(775), - [sym_decimal_floating_point_literal] = ACTIONS(775), - [sym_hex_floating_point_literal] = ACTIONS(777), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_character_literal] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(777), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [sym_null_literal] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_final] = ACTIONS(777), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(775), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_new] = ACTIONS(777), - [anon_sym_class] = ACTIONS(777), - [anon_sym_switch] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_case] = ACTIONS(777), - [anon_sym_default] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_assert] = ACTIONS(777), - [anon_sym_do] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_break] = ACTIONS(777), - [anon_sym_continue] = ACTIONS(777), - [anon_sym_return] = ACTIONS(777), - [anon_sym_yield] = ACTIONS(777), - [anon_sym_synchronized] = ACTIONS(777), - [anon_sym_throw] = ACTIONS(777), - [anon_sym_try] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_else] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [anon_sym_open] = ACTIONS(777), - [anon_sym_module] = ACTIONS(777), - [anon_sym_static] = ACTIONS(777), - [anon_sym_with] = ACTIONS(777), - [anon_sym_package] = ACTIONS(777), - [anon_sym_import] = ACTIONS(777), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_public] = ACTIONS(777), - [anon_sym_protected] = ACTIONS(777), - [anon_sym_private] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(777), - [anon_sym_strictfp] = ACTIONS(777), - [anon_sym_native] = ACTIONS(777), - [anon_sym_transient] = ACTIONS(777), - [anon_sym_volatile] = ACTIONS(777), - [anon_sym_sealed] = ACTIONS(777), - [anon_sym_non_DASHsealed] = ACTIONS(775), - [anon_sym_record] = ACTIONS(777), - [anon_sym_ATinterface] = ACTIONS(775), - [anon_sym_interface] = ACTIONS(777), - [anon_sym_byte] = ACTIONS(777), - [anon_sym_short] = ACTIONS(777), - [anon_sym_int] = ACTIONS(777), - [anon_sym_long] = ACTIONS(777), - [anon_sym_char] = ACTIONS(777), - [anon_sym_float] = ACTIONS(777), - [anon_sym_double] = ACTIONS(777), - [sym_boolean_type] = ACTIONS(777), - [sym_void_type] = ACTIONS(777), - [sym_this] = ACTIONS(777), - [sym_super] = ACTIONS(777), + [STATE(257)] = { + [ts_builtin_sym_end] = ACTIONS(973), + [sym_identifier] = ACTIONS(975), + [sym_decimal_integer_literal] = ACTIONS(975), + [sym_hex_integer_literal] = ACTIONS(975), + [sym_octal_integer_literal] = ACTIONS(975), + [sym_binary_integer_literal] = ACTIONS(973), + [sym_decimal_floating_point_literal] = ACTIONS(973), + [sym_hex_floating_point_literal] = ACTIONS(975), + [sym_true] = ACTIONS(975), + [sym_false] = ACTIONS(975), + [sym_character_literal] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(975), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [sym_null_literal] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_final] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_TILDE] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(973), + [anon_sym_DASH_DASH] = ACTIONS(973), + [anon_sym_new] = ACTIONS(975), + [anon_sym_class] = ACTIONS(975), + [anon_sym_switch] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_case] = ACTIONS(975), + [anon_sym_default] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_assert] = ACTIONS(975), + [anon_sym_do] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_yield] = ACTIONS(975), + [anon_sym_synchronized] = ACTIONS(975), + [anon_sym_throw] = ACTIONS(975), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_else] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_AT] = ACTIONS(975), + [anon_sym_open] = ACTIONS(975), + [anon_sym_module] = ACTIONS(975), + [anon_sym_static] = ACTIONS(975), + [anon_sym_package] = ACTIONS(975), + [anon_sym_import] = ACTIONS(975), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_public] = ACTIONS(975), + [anon_sym_protected] = ACTIONS(975), + [anon_sym_private] = ACTIONS(975), + [anon_sym_abstract] = ACTIONS(975), + [anon_sym_strictfp] = ACTIONS(975), + [anon_sym_native] = ACTIONS(975), + [anon_sym_transient] = ACTIONS(975), + [anon_sym_volatile] = ACTIONS(975), + [anon_sym_sealed] = ACTIONS(975), + [anon_sym_non_DASHsealed] = ACTIONS(973), + [anon_sym_record] = ACTIONS(975), + [anon_sym_ATinterface] = ACTIONS(973), + [anon_sym_interface] = ACTIONS(975), + [anon_sym_byte] = ACTIONS(975), + [anon_sym_short] = ACTIONS(975), + [anon_sym_int] = ACTIONS(975), + [anon_sym_long] = ACTIONS(975), + [anon_sym_char] = ACTIONS(975), + [anon_sym_float] = ACTIONS(975), + [anon_sym_double] = ACTIONS(975), + [sym_boolean_type] = ACTIONS(975), + [sym_void_type] = ACTIONS(975), + [sym_this] = ACTIONS(975), + [sym_super] = ACTIONS(975), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(779), - [sym_identifier] = ACTIONS(781), - [sym_decimal_integer_literal] = ACTIONS(781), - [sym_hex_integer_literal] = ACTIONS(781), - [sym_octal_integer_literal] = ACTIONS(781), - [sym_binary_integer_literal] = ACTIONS(779), - [sym_decimal_floating_point_literal] = ACTIONS(779), - [sym_hex_floating_point_literal] = ACTIONS(781), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_character_literal] = ACTIONS(779), - [anon_sym_DQUOTE] = ACTIONS(781), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), - [anon_sym_RBRACE] = ACTIONS(779), - [sym_null_literal] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_LT] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_final] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_new] = ACTIONS(781), - [anon_sym_class] = ACTIONS(781), - [anon_sym_switch] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_case] = ACTIONS(781), - [anon_sym_default] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(779), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [anon_sym_return] = ACTIONS(781), - [anon_sym_yield] = ACTIONS(781), - [anon_sym_synchronized] = ACTIONS(781), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_try] = ACTIONS(781), - [anon_sym_if] = ACTIONS(781), - [anon_sym_else] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym_open] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_static] = ACTIONS(781), - [anon_sym_with] = ACTIONS(781), - [anon_sym_package] = ACTIONS(781), - [anon_sym_import] = ACTIONS(781), - [anon_sym_enum] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_abstract] = ACTIONS(781), - [anon_sym_strictfp] = ACTIONS(781), - [anon_sym_native] = ACTIONS(781), - [anon_sym_transient] = ACTIONS(781), - [anon_sym_volatile] = ACTIONS(781), - [anon_sym_sealed] = ACTIONS(781), - [anon_sym_non_DASHsealed] = ACTIONS(779), - [anon_sym_record] = ACTIONS(781), - [anon_sym_ATinterface] = ACTIONS(779), - [anon_sym_interface] = ACTIONS(781), - [anon_sym_byte] = ACTIONS(781), - [anon_sym_short] = ACTIONS(781), - [anon_sym_int] = ACTIONS(781), - [anon_sym_long] = ACTIONS(781), - [anon_sym_char] = ACTIONS(781), - [anon_sym_float] = ACTIONS(781), - [anon_sym_double] = ACTIONS(781), - [sym_boolean_type] = ACTIONS(781), - [sym_void_type] = ACTIONS(781), - [sym_this] = ACTIONS(781), - [sym_super] = ACTIONS(781), + [STATE(258)] = { + [ts_builtin_sym_end] = ACTIONS(977), + [sym_identifier] = ACTIONS(979), + [sym_decimal_integer_literal] = ACTIONS(979), + [sym_hex_integer_literal] = ACTIONS(979), + [sym_octal_integer_literal] = ACTIONS(979), + [sym_binary_integer_literal] = ACTIONS(977), + [sym_decimal_floating_point_literal] = ACTIONS(977), + [sym_hex_floating_point_literal] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [sym_character_literal] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [sym_null_literal] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_final] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(977), + [anon_sym_PLUS_PLUS] = ACTIONS(977), + [anon_sym_DASH_DASH] = ACTIONS(977), + [anon_sym_new] = ACTIONS(979), + [anon_sym_class] = ACTIONS(979), + [anon_sym_switch] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_case] = ACTIONS(979), + [anon_sym_default] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_assert] = ACTIONS(979), + [anon_sym_do] = ACTIONS(979), + [anon_sym_while] = ACTIONS(979), + [anon_sym_break] = ACTIONS(979), + [anon_sym_continue] = ACTIONS(979), + [anon_sym_return] = ACTIONS(979), + [anon_sym_yield] = ACTIONS(979), + [anon_sym_synchronized] = ACTIONS(979), + [anon_sym_throw] = ACTIONS(979), + [anon_sym_try] = ACTIONS(979), + [anon_sym_if] = ACTIONS(979), + [anon_sym_else] = ACTIONS(979), + [anon_sym_for] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(979), + [anon_sym_open] = ACTIONS(979), + [anon_sym_module] = ACTIONS(979), + [anon_sym_static] = ACTIONS(979), + [anon_sym_package] = ACTIONS(979), + [anon_sym_import] = ACTIONS(979), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_public] = ACTIONS(979), + [anon_sym_protected] = ACTIONS(979), + [anon_sym_private] = ACTIONS(979), + [anon_sym_abstract] = ACTIONS(979), + [anon_sym_strictfp] = ACTIONS(979), + [anon_sym_native] = ACTIONS(979), + [anon_sym_transient] = ACTIONS(979), + [anon_sym_volatile] = ACTIONS(979), + [anon_sym_sealed] = ACTIONS(979), + [anon_sym_non_DASHsealed] = ACTIONS(977), + [anon_sym_record] = ACTIONS(979), + [anon_sym_ATinterface] = ACTIONS(977), + [anon_sym_interface] = ACTIONS(979), + [anon_sym_byte] = ACTIONS(979), + [anon_sym_short] = ACTIONS(979), + [anon_sym_int] = ACTIONS(979), + [anon_sym_long] = ACTIONS(979), + [anon_sym_char] = ACTIONS(979), + [anon_sym_float] = ACTIONS(979), + [anon_sym_double] = ACTIONS(979), + [sym_boolean_type] = ACTIONS(979), + [sym_void_type] = ACTIONS(979), + [sym_this] = ACTIONS(979), + [sym_super] = ACTIONS(979), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(259)] = { + [ts_builtin_sym_end] = ACTIONS(981), + [sym_identifier] = ACTIONS(983), + [sym_decimal_integer_literal] = ACTIONS(983), + [sym_hex_integer_literal] = ACTIONS(983), + [sym_octal_integer_literal] = ACTIONS(983), + [sym_binary_integer_literal] = ACTIONS(981), + [sym_decimal_floating_point_literal] = ACTIONS(981), + [sym_hex_floating_point_literal] = ACTIONS(983), + [sym_true] = ACTIONS(983), + [sym_false] = ACTIONS(983), + [sym_character_literal] = ACTIONS(981), + [anon_sym_DQUOTE] = ACTIONS(983), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), + [sym_null_literal] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_final] = ACTIONS(983), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [anon_sym_new] = ACTIONS(983), + [anon_sym_class] = ACTIONS(983), + [anon_sym_switch] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_case] = ACTIONS(983), + [anon_sym_default] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_assert] = ACTIONS(983), + [anon_sym_do] = ACTIONS(983), + [anon_sym_while] = ACTIONS(983), + [anon_sym_break] = ACTIONS(983), + [anon_sym_continue] = ACTIONS(983), + [anon_sym_return] = ACTIONS(983), + [anon_sym_yield] = ACTIONS(983), + [anon_sym_synchronized] = ACTIONS(983), + [anon_sym_throw] = ACTIONS(983), + [anon_sym_try] = ACTIONS(983), + [anon_sym_if] = ACTIONS(983), + [anon_sym_else] = ACTIONS(983), + [anon_sym_for] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_open] = ACTIONS(983), + [anon_sym_module] = ACTIONS(983), + [anon_sym_static] = ACTIONS(983), + [anon_sym_package] = ACTIONS(983), + [anon_sym_import] = ACTIONS(983), + [anon_sym_enum] = ACTIONS(983), + [anon_sym_public] = ACTIONS(983), + [anon_sym_protected] = ACTIONS(983), + [anon_sym_private] = ACTIONS(983), + [anon_sym_abstract] = ACTIONS(983), + [anon_sym_strictfp] = ACTIONS(983), + [anon_sym_native] = ACTIONS(983), + [anon_sym_transient] = ACTIONS(983), + [anon_sym_volatile] = ACTIONS(983), + [anon_sym_sealed] = ACTIONS(983), + [anon_sym_non_DASHsealed] = ACTIONS(981), + [anon_sym_record] = ACTIONS(983), + [anon_sym_ATinterface] = ACTIONS(981), + [anon_sym_interface] = ACTIONS(983), + [anon_sym_byte] = ACTIONS(983), + [anon_sym_short] = ACTIONS(983), + [anon_sym_int] = ACTIONS(983), + [anon_sym_long] = ACTIONS(983), + [anon_sym_char] = ACTIONS(983), + [anon_sym_float] = ACTIONS(983), + [anon_sym_double] = ACTIONS(983), + [sym_boolean_type] = ACTIONS(983), + [sym_void_type] = ACTIONS(983), + [sym_this] = ACTIONS(983), + [sym_super] = ACTIONS(983), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(260)] = { + [ts_builtin_sym_end] = ACTIONS(985), + [sym_identifier] = ACTIONS(987), + [sym_decimal_integer_literal] = ACTIONS(987), + [sym_hex_integer_literal] = ACTIONS(987), + [sym_octal_integer_literal] = ACTIONS(987), + [sym_binary_integer_literal] = ACTIONS(985), + [sym_decimal_floating_point_literal] = ACTIONS(985), + [sym_hex_floating_point_literal] = ACTIONS(987), + [sym_true] = ACTIONS(987), + [sym_false] = ACTIONS(987), + [sym_character_literal] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(987), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(985), + [anon_sym_RBRACE] = ACTIONS(985), + [sym_null_literal] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_final] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(985), + [anon_sym_DASH_DASH] = ACTIONS(985), + [anon_sym_new] = ACTIONS(987), + [anon_sym_class] = ACTIONS(987), + [anon_sym_switch] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(985), + [anon_sym_case] = ACTIONS(987), + [anon_sym_default] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_assert] = ACTIONS(987), + [anon_sym_do] = ACTIONS(987), + [anon_sym_while] = ACTIONS(987), + [anon_sym_break] = ACTIONS(987), + [anon_sym_continue] = ACTIONS(987), + [anon_sym_return] = ACTIONS(987), + [anon_sym_yield] = ACTIONS(987), + [anon_sym_synchronized] = ACTIONS(987), + [anon_sym_throw] = ACTIONS(987), + [anon_sym_try] = ACTIONS(987), + [anon_sym_if] = ACTIONS(987), + [anon_sym_else] = ACTIONS(987), + [anon_sym_for] = ACTIONS(987), + [anon_sym_AT] = ACTIONS(987), + [anon_sym_open] = ACTIONS(987), + [anon_sym_module] = ACTIONS(987), + [anon_sym_static] = ACTIONS(987), + [anon_sym_package] = ACTIONS(987), + [anon_sym_import] = ACTIONS(987), + [anon_sym_enum] = ACTIONS(987), + [anon_sym_public] = ACTIONS(987), + [anon_sym_protected] = ACTIONS(987), + [anon_sym_private] = ACTIONS(987), + [anon_sym_abstract] = ACTIONS(987), + [anon_sym_strictfp] = ACTIONS(987), + [anon_sym_native] = ACTIONS(987), + [anon_sym_transient] = ACTIONS(987), + [anon_sym_volatile] = ACTIONS(987), + [anon_sym_sealed] = ACTIONS(987), + [anon_sym_non_DASHsealed] = ACTIONS(985), + [anon_sym_record] = ACTIONS(987), + [anon_sym_ATinterface] = ACTIONS(985), + [anon_sym_interface] = ACTIONS(987), + [anon_sym_byte] = ACTIONS(987), + [anon_sym_short] = ACTIONS(987), + [anon_sym_int] = ACTIONS(987), + [anon_sym_long] = ACTIONS(987), + [anon_sym_char] = ACTIONS(987), + [anon_sym_float] = ACTIONS(987), + [anon_sym_double] = ACTIONS(987), + [sym_boolean_type] = ACTIONS(987), + [sym_void_type] = ACTIONS(987), + [sym_this] = ACTIONS(987), + [sym_super] = ACTIONS(987), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(261)] = { + [ts_builtin_sym_end] = ACTIONS(989), + [sym_identifier] = ACTIONS(991), + [sym_decimal_integer_literal] = ACTIONS(991), + [sym_hex_integer_literal] = ACTIONS(991), + [sym_octal_integer_literal] = ACTIONS(991), + [sym_binary_integer_literal] = ACTIONS(989), + [sym_decimal_floating_point_literal] = ACTIONS(989), + [sym_hex_floating_point_literal] = ACTIONS(991), + [sym_true] = ACTIONS(991), + [sym_false] = ACTIONS(991), + [sym_character_literal] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(991), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(989), + [anon_sym_RBRACE] = ACTIONS(989), + [sym_null_literal] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_final] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_new] = ACTIONS(991), + [anon_sym_class] = ACTIONS(991), + [anon_sym_switch] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_case] = ACTIONS(991), + [anon_sym_default] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym_assert] = ACTIONS(991), + [anon_sym_do] = ACTIONS(991), + [anon_sym_while] = ACTIONS(991), + [anon_sym_break] = ACTIONS(991), + [anon_sym_continue] = ACTIONS(991), + [anon_sym_return] = ACTIONS(991), + [anon_sym_yield] = ACTIONS(991), + [anon_sym_synchronized] = ACTIONS(991), + [anon_sym_throw] = ACTIONS(991), + [anon_sym_try] = ACTIONS(991), + [anon_sym_if] = ACTIONS(991), + [anon_sym_else] = ACTIONS(991), + [anon_sym_for] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_open] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_static] = ACTIONS(991), + [anon_sym_package] = ACTIONS(991), + [anon_sym_import] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_abstract] = ACTIONS(991), + [anon_sym_strictfp] = ACTIONS(991), + [anon_sym_native] = ACTIONS(991), + [anon_sym_transient] = ACTIONS(991), + [anon_sym_volatile] = ACTIONS(991), + [anon_sym_sealed] = ACTIONS(991), + [anon_sym_non_DASHsealed] = ACTIONS(989), + [anon_sym_record] = ACTIONS(991), + [anon_sym_ATinterface] = ACTIONS(989), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_byte] = ACTIONS(991), + [anon_sym_short] = ACTIONS(991), + [anon_sym_int] = ACTIONS(991), + [anon_sym_long] = ACTIONS(991), + [anon_sym_char] = ACTIONS(991), + [anon_sym_float] = ACTIONS(991), + [anon_sym_double] = ACTIONS(991), + [sym_boolean_type] = ACTIONS(991), + [sym_void_type] = ACTIONS(991), + [sym_this] = ACTIONS(991), + [sym_super] = ACTIONS(991), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(262)] = { + [ts_builtin_sym_end] = ACTIONS(993), + [sym_identifier] = ACTIONS(995), + [sym_decimal_integer_literal] = ACTIONS(995), + [sym_hex_integer_literal] = ACTIONS(995), + [sym_octal_integer_literal] = ACTIONS(995), + [sym_binary_integer_literal] = ACTIONS(993), + [sym_decimal_floating_point_literal] = ACTIONS(993), + [sym_hex_floating_point_literal] = ACTIONS(995), + [sym_true] = ACTIONS(995), + [sym_false] = ACTIONS(995), + [sym_character_literal] = ACTIONS(993), + [anon_sym_DQUOTE] = ACTIONS(995), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [sym_null_literal] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_final] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_PLUS_PLUS] = ACTIONS(993), + [anon_sym_DASH_DASH] = ACTIONS(993), + [anon_sym_new] = ACTIONS(995), + [anon_sym_class] = ACTIONS(995), + [anon_sym_switch] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_case] = ACTIONS(995), + [anon_sym_default] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(993), + [anon_sym_assert] = ACTIONS(995), + [anon_sym_do] = ACTIONS(995), + [anon_sym_while] = ACTIONS(995), + [anon_sym_break] = ACTIONS(995), + [anon_sym_continue] = ACTIONS(995), + [anon_sym_return] = ACTIONS(995), + [anon_sym_yield] = ACTIONS(995), + [anon_sym_synchronized] = ACTIONS(995), + [anon_sym_throw] = ACTIONS(995), + [anon_sym_try] = ACTIONS(995), + [anon_sym_if] = ACTIONS(995), + [anon_sym_else] = ACTIONS(995), + [anon_sym_for] = ACTIONS(995), + [anon_sym_AT] = ACTIONS(995), + [anon_sym_open] = ACTIONS(995), + [anon_sym_module] = ACTIONS(995), + [anon_sym_static] = ACTIONS(995), + [anon_sym_package] = ACTIONS(995), + [anon_sym_import] = ACTIONS(995), + [anon_sym_enum] = ACTIONS(995), + [anon_sym_public] = ACTIONS(995), + [anon_sym_protected] = ACTIONS(995), + [anon_sym_private] = ACTIONS(995), + [anon_sym_abstract] = ACTIONS(995), + [anon_sym_strictfp] = ACTIONS(995), + [anon_sym_native] = ACTIONS(995), + [anon_sym_transient] = ACTIONS(995), + [anon_sym_volatile] = ACTIONS(995), + [anon_sym_sealed] = ACTIONS(995), + [anon_sym_non_DASHsealed] = ACTIONS(993), + [anon_sym_record] = ACTIONS(995), + [anon_sym_ATinterface] = ACTIONS(993), + [anon_sym_interface] = ACTIONS(995), + [anon_sym_byte] = ACTIONS(995), + [anon_sym_short] = ACTIONS(995), + [anon_sym_int] = ACTIONS(995), + [anon_sym_long] = ACTIONS(995), + [anon_sym_char] = ACTIONS(995), + [anon_sym_float] = ACTIONS(995), + [anon_sym_double] = ACTIONS(995), + [sym_boolean_type] = ACTIONS(995), + [sym_void_type] = ACTIONS(995), + [sym_this] = ACTIONS(995), + [sym_super] = ACTIONS(995), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(263)] = { + [ts_builtin_sym_end] = ACTIONS(997), + [sym_identifier] = ACTIONS(999), + [sym_decimal_integer_literal] = ACTIONS(999), + [sym_hex_integer_literal] = ACTIONS(999), + [sym_octal_integer_literal] = ACTIONS(999), + [sym_binary_integer_literal] = ACTIONS(997), + [sym_decimal_floating_point_literal] = ACTIONS(997), + [sym_hex_floating_point_literal] = ACTIONS(999), + [sym_true] = ACTIONS(999), + [sym_false] = ACTIONS(999), + [sym_character_literal] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(999), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(997), + [anon_sym_RBRACE] = ACTIONS(997), + [sym_null_literal] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_final] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(997), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_new] = ACTIONS(999), + [anon_sym_class] = ACTIONS(999), + [anon_sym_switch] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_case] = ACTIONS(999), + [anon_sym_default] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_assert] = ACTIONS(999), + [anon_sym_do] = ACTIONS(999), + [anon_sym_while] = ACTIONS(999), + [anon_sym_break] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(999), + [anon_sym_return] = ACTIONS(999), + [anon_sym_yield] = ACTIONS(999), + [anon_sym_synchronized] = ACTIONS(999), + [anon_sym_throw] = ACTIONS(999), + [anon_sym_try] = ACTIONS(999), + [anon_sym_if] = ACTIONS(999), + [anon_sym_else] = ACTIONS(999), + [anon_sym_for] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [anon_sym_open] = ACTIONS(999), + [anon_sym_module] = ACTIONS(999), + [anon_sym_static] = ACTIONS(999), + [anon_sym_package] = ACTIONS(999), + [anon_sym_import] = ACTIONS(999), + [anon_sym_enum] = ACTIONS(999), + [anon_sym_public] = ACTIONS(999), + [anon_sym_protected] = ACTIONS(999), + [anon_sym_private] = ACTIONS(999), + [anon_sym_abstract] = ACTIONS(999), + [anon_sym_strictfp] = ACTIONS(999), + [anon_sym_native] = ACTIONS(999), + [anon_sym_transient] = ACTIONS(999), + [anon_sym_volatile] = ACTIONS(999), + [anon_sym_sealed] = ACTIONS(999), + [anon_sym_non_DASHsealed] = ACTIONS(997), + [anon_sym_record] = ACTIONS(999), + [anon_sym_ATinterface] = ACTIONS(997), + [anon_sym_interface] = ACTIONS(999), + [anon_sym_byte] = ACTIONS(999), + [anon_sym_short] = ACTIONS(999), + [anon_sym_int] = ACTIONS(999), + [anon_sym_long] = ACTIONS(999), + [anon_sym_char] = ACTIONS(999), + [anon_sym_float] = ACTIONS(999), + [anon_sym_double] = ACTIONS(999), + [sym_boolean_type] = ACTIONS(999), + [sym_void_type] = ACTIONS(999), + [sym_this] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(264)] = { + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_identifier] = ACTIONS(1003), + [sym_decimal_integer_literal] = ACTIONS(1003), + [sym_hex_integer_literal] = ACTIONS(1003), + [sym_octal_integer_literal] = ACTIONS(1003), + [sym_binary_integer_literal] = ACTIONS(1001), + [sym_decimal_floating_point_literal] = ACTIONS(1001), + [sym_hex_floating_point_literal] = ACTIONS(1003), + [sym_true] = ACTIONS(1003), + [sym_false] = ACTIONS(1003), + [sym_character_literal] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1003), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [sym_null_literal] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_final] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1001), + [anon_sym_DASH_DASH] = ACTIONS(1001), + [anon_sym_new] = ACTIONS(1003), + [anon_sym_class] = ACTIONS(1003), + [anon_sym_switch] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_case] = ACTIONS(1003), + [anon_sym_default] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_assert] = ACTIONS(1003), + [anon_sym_do] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(1003), + [anon_sym_break] = ACTIONS(1003), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_return] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_synchronized] = ACTIONS(1003), + [anon_sym_throw] = ACTIONS(1003), + [anon_sym_try] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_else] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_open] = ACTIONS(1003), + [anon_sym_module] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1003), + [anon_sym_package] = ACTIONS(1003), + [anon_sym_import] = ACTIONS(1003), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_public] = ACTIONS(1003), + [anon_sym_protected] = ACTIONS(1003), + [anon_sym_private] = ACTIONS(1003), + [anon_sym_abstract] = ACTIONS(1003), + [anon_sym_strictfp] = ACTIONS(1003), + [anon_sym_native] = ACTIONS(1003), + [anon_sym_transient] = ACTIONS(1003), + [anon_sym_volatile] = ACTIONS(1003), + [anon_sym_sealed] = ACTIONS(1003), + [anon_sym_non_DASHsealed] = ACTIONS(1001), + [anon_sym_record] = ACTIONS(1003), + [anon_sym_ATinterface] = ACTIONS(1001), + [anon_sym_interface] = ACTIONS(1003), + [anon_sym_byte] = ACTIONS(1003), + [anon_sym_short] = ACTIONS(1003), + [anon_sym_int] = ACTIONS(1003), + [anon_sym_long] = ACTIONS(1003), + [anon_sym_char] = ACTIONS(1003), + [anon_sym_float] = ACTIONS(1003), + [anon_sym_double] = ACTIONS(1003), + [sym_boolean_type] = ACTIONS(1003), + [sym_void_type] = ACTIONS(1003), + [sym_this] = ACTIONS(1003), + [sym_super] = ACTIONS(1003), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(265)] = { + [ts_builtin_sym_end] = ACTIONS(1005), + [sym_identifier] = ACTIONS(1007), + [sym_decimal_integer_literal] = ACTIONS(1007), + [sym_hex_integer_literal] = ACTIONS(1007), + [sym_octal_integer_literal] = ACTIONS(1007), + [sym_binary_integer_literal] = ACTIONS(1005), + [sym_decimal_floating_point_literal] = ACTIONS(1005), + [sym_hex_floating_point_literal] = ACTIONS(1007), + [sym_true] = ACTIONS(1007), + [sym_false] = ACTIONS(1007), + [sym_character_literal] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), + [sym_null_literal] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1007), + [anon_sym_final] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1005), + [anon_sym_DASH_DASH] = ACTIONS(1005), + [anon_sym_new] = ACTIONS(1007), + [anon_sym_class] = ACTIONS(1007), + [anon_sym_switch] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1005), + [anon_sym_case] = ACTIONS(1007), + [anon_sym_default] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_assert] = ACTIONS(1007), + [anon_sym_do] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_break] = ACTIONS(1007), + [anon_sym_continue] = ACTIONS(1007), + [anon_sym_return] = ACTIONS(1007), + [anon_sym_yield] = ACTIONS(1007), + [anon_sym_synchronized] = ACTIONS(1007), + [anon_sym_throw] = ACTIONS(1007), + [anon_sym_try] = ACTIONS(1007), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_else] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_open] = ACTIONS(1007), + [anon_sym_module] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1007), + [anon_sym_package] = ACTIONS(1007), + [anon_sym_import] = ACTIONS(1007), + [anon_sym_enum] = ACTIONS(1007), + [anon_sym_public] = ACTIONS(1007), + [anon_sym_protected] = ACTIONS(1007), + [anon_sym_private] = ACTIONS(1007), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_strictfp] = ACTIONS(1007), + [anon_sym_native] = ACTIONS(1007), + [anon_sym_transient] = ACTIONS(1007), + [anon_sym_volatile] = ACTIONS(1007), + [anon_sym_sealed] = ACTIONS(1007), + [anon_sym_non_DASHsealed] = ACTIONS(1005), + [anon_sym_record] = ACTIONS(1007), + [anon_sym_ATinterface] = ACTIONS(1005), + [anon_sym_interface] = ACTIONS(1007), + [anon_sym_byte] = ACTIONS(1007), + [anon_sym_short] = ACTIONS(1007), + [anon_sym_int] = ACTIONS(1007), + [anon_sym_long] = ACTIONS(1007), + [anon_sym_char] = ACTIONS(1007), + [anon_sym_float] = ACTIONS(1007), + [anon_sym_double] = ACTIONS(1007), + [sym_boolean_type] = ACTIONS(1007), + [sym_void_type] = ACTIONS(1007), + [sym_this] = ACTIONS(1007), + [sym_super] = ACTIONS(1007), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(266)] = { + [ts_builtin_sym_end] = ACTIONS(1009), + [sym_identifier] = ACTIONS(1011), + [sym_decimal_integer_literal] = ACTIONS(1011), + [sym_hex_integer_literal] = ACTIONS(1011), + [sym_octal_integer_literal] = ACTIONS(1011), + [sym_binary_integer_literal] = ACTIONS(1009), + [sym_decimal_floating_point_literal] = ACTIONS(1009), + [sym_hex_floating_point_literal] = ACTIONS(1011), + [sym_true] = ACTIONS(1011), + [sym_false] = ACTIONS(1011), + [sym_character_literal] = ACTIONS(1009), + [anon_sym_DQUOTE] = ACTIONS(1011), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1009), + [sym_null_literal] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_final] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_TILDE] = ACTIONS(1009), + [anon_sym_PLUS_PLUS] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1009), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_class] = ACTIONS(1011), + [anon_sym_switch] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_case] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1011), + [anon_sym_SEMI] = ACTIONS(1009), + [anon_sym_assert] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_synchronized] = ACTIONS(1011), + [anon_sym_throw] = ACTIONS(1011), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_AT] = ACTIONS(1011), + [anon_sym_open] = ACTIONS(1011), + [anon_sym_module] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1011), + [anon_sym_package] = ACTIONS(1011), + [anon_sym_import] = ACTIONS(1011), + [anon_sym_enum] = ACTIONS(1011), + [anon_sym_public] = ACTIONS(1011), + [anon_sym_protected] = ACTIONS(1011), + [anon_sym_private] = ACTIONS(1011), + [anon_sym_abstract] = ACTIONS(1011), + [anon_sym_strictfp] = ACTIONS(1011), + [anon_sym_native] = ACTIONS(1011), + [anon_sym_transient] = ACTIONS(1011), + [anon_sym_volatile] = ACTIONS(1011), + [anon_sym_sealed] = ACTIONS(1011), + [anon_sym_non_DASHsealed] = ACTIONS(1009), + [anon_sym_record] = ACTIONS(1011), + [anon_sym_ATinterface] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1011), + [anon_sym_byte] = ACTIONS(1011), + [anon_sym_short] = ACTIONS(1011), + [anon_sym_int] = ACTIONS(1011), + [anon_sym_long] = ACTIONS(1011), + [anon_sym_char] = ACTIONS(1011), + [anon_sym_float] = ACTIONS(1011), + [anon_sym_double] = ACTIONS(1011), + [sym_boolean_type] = ACTIONS(1011), + [sym_void_type] = ACTIONS(1011), + [sym_this] = ACTIONS(1011), + [sym_super] = ACTIONS(1011), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(267)] = { + [ts_builtin_sym_end] = ACTIONS(1013), + [sym_identifier] = ACTIONS(1015), + [sym_decimal_integer_literal] = ACTIONS(1015), + [sym_hex_integer_literal] = ACTIONS(1015), + [sym_octal_integer_literal] = ACTIONS(1015), + [sym_binary_integer_literal] = ACTIONS(1013), + [sym_decimal_floating_point_literal] = ACTIONS(1013), + [sym_hex_floating_point_literal] = ACTIONS(1015), + [sym_true] = ACTIONS(1015), + [sym_false] = ACTIONS(1015), + [sym_character_literal] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1015), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [sym_null_literal] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_final] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_new] = ACTIONS(1015), + [anon_sym_class] = ACTIONS(1015), + [anon_sym_switch] = ACTIONS(1015), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_case] = ACTIONS(1015), + [anon_sym_default] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_assert] = ACTIONS(1015), + [anon_sym_do] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_break] = ACTIONS(1015), + [anon_sym_continue] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1015), + [anon_sym_synchronized] = ACTIONS(1015), + [anon_sym_throw] = ACTIONS(1015), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1015), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1015), + [anon_sym_open] = ACTIONS(1015), + [anon_sym_module] = ACTIONS(1015), + [anon_sym_static] = ACTIONS(1015), + [anon_sym_package] = ACTIONS(1015), + [anon_sym_import] = ACTIONS(1015), + [anon_sym_enum] = ACTIONS(1015), + [anon_sym_public] = ACTIONS(1015), + [anon_sym_protected] = ACTIONS(1015), + [anon_sym_private] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1015), + [anon_sym_strictfp] = ACTIONS(1015), + [anon_sym_native] = ACTIONS(1015), + [anon_sym_transient] = ACTIONS(1015), + [anon_sym_volatile] = ACTIONS(1015), + [anon_sym_sealed] = ACTIONS(1015), + [anon_sym_non_DASHsealed] = ACTIONS(1013), + [anon_sym_record] = ACTIONS(1015), + [anon_sym_ATinterface] = ACTIONS(1013), + [anon_sym_interface] = ACTIONS(1015), + [anon_sym_byte] = ACTIONS(1015), + [anon_sym_short] = ACTIONS(1015), + [anon_sym_int] = ACTIONS(1015), + [anon_sym_long] = ACTIONS(1015), + [anon_sym_char] = ACTIONS(1015), + [anon_sym_float] = ACTIONS(1015), + [anon_sym_double] = ACTIONS(1015), + [sym_boolean_type] = ACTIONS(1015), + [sym_void_type] = ACTIONS(1015), + [sym_this] = ACTIONS(1015), + [sym_super] = ACTIONS(1015), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(268)] = { + [ts_builtin_sym_end] = ACTIONS(1017), + [sym_identifier] = ACTIONS(1019), + [sym_decimal_integer_literal] = ACTIONS(1019), + [sym_hex_integer_literal] = ACTIONS(1019), + [sym_octal_integer_literal] = ACTIONS(1019), + [sym_binary_integer_literal] = ACTIONS(1017), + [sym_decimal_floating_point_literal] = ACTIONS(1017), + [sym_hex_floating_point_literal] = ACTIONS(1019), + [sym_true] = ACTIONS(1019), + [sym_false] = ACTIONS(1019), + [sym_character_literal] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [sym_null_literal] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_final] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1017), + [anon_sym_TILDE] = ACTIONS(1017), + [anon_sym_PLUS_PLUS] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1017), + [anon_sym_new] = ACTIONS(1019), + [anon_sym_class] = ACTIONS(1019), + [anon_sym_switch] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_case] = ACTIONS(1019), + [anon_sym_default] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_assert] = ACTIONS(1019), + [anon_sym_do] = ACTIONS(1019), + [anon_sym_while] = ACTIONS(1019), + [anon_sym_break] = ACTIONS(1019), + [anon_sym_continue] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(1019), + [anon_sym_yield] = ACTIONS(1019), + [anon_sym_synchronized] = ACTIONS(1019), + [anon_sym_throw] = ACTIONS(1019), + [anon_sym_try] = ACTIONS(1019), + [anon_sym_if] = ACTIONS(1019), + [anon_sym_else] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(1019), + [anon_sym_open] = ACTIONS(1019), + [anon_sym_module] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1019), + [anon_sym_package] = ACTIONS(1019), + [anon_sym_import] = ACTIONS(1019), + [anon_sym_enum] = ACTIONS(1019), + [anon_sym_public] = ACTIONS(1019), + [anon_sym_protected] = ACTIONS(1019), + [anon_sym_private] = ACTIONS(1019), + [anon_sym_abstract] = ACTIONS(1019), + [anon_sym_strictfp] = ACTIONS(1019), + [anon_sym_native] = ACTIONS(1019), + [anon_sym_transient] = ACTIONS(1019), + [anon_sym_volatile] = ACTIONS(1019), + [anon_sym_sealed] = ACTIONS(1019), + [anon_sym_non_DASHsealed] = ACTIONS(1017), + [anon_sym_record] = ACTIONS(1019), + [anon_sym_ATinterface] = ACTIONS(1017), + [anon_sym_interface] = ACTIONS(1019), + [anon_sym_byte] = ACTIONS(1019), + [anon_sym_short] = ACTIONS(1019), + [anon_sym_int] = ACTIONS(1019), + [anon_sym_long] = ACTIONS(1019), + [anon_sym_char] = ACTIONS(1019), + [anon_sym_float] = ACTIONS(1019), + [anon_sym_double] = ACTIONS(1019), + [sym_boolean_type] = ACTIONS(1019), + [sym_void_type] = ACTIONS(1019), + [sym_this] = ACTIONS(1019), + [sym_super] = ACTIONS(1019), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(269)] = { + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1023), + [sym_decimal_integer_literal] = ACTIONS(1023), + [sym_hex_integer_literal] = ACTIONS(1023), + [sym_octal_integer_literal] = ACTIONS(1023), + [sym_binary_integer_literal] = ACTIONS(1021), + [sym_decimal_floating_point_literal] = ACTIONS(1021), + [sym_hex_floating_point_literal] = ACTIONS(1023), + [sym_true] = ACTIONS(1023), + [sym_false] = ACTIONS(1023), + [sym_character_literal] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1023), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [sym_null_literal] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_final] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_TILDE] = ACTIONS(1021), + [anon_sym_PLUS_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(1023), + [anon_sym_switch] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_case] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_assert] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1023), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_synchronized] = ACTIONS(1023), + [anon_sym_throw] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1023), + [anon_sym_else] = ACTIONS(1023), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1023), + [anon_sym_open] = ACTIONS(1023), + [anon_sym_module] = ACTIONS(1023), + [anon_sym_static] = ACTIONS(1023), + [anon_sym_package] = ACTIONS(1023), + [anon_sym_import] = ACTIONS(1023), + [anon_sym_enum] = ACTIONS(1023), + [anon_sym_public] = ACTIONS(1023), + [anon_sym_protected] = ACTIONS(1023), + [anon_sym_private] = ACTIONS(1023), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_strictfp] = ACTIONS(1023), + [anon_sym_native] = ACTIONS(1023), + [anon_sym_transient] = ACTIONS(1023), + [anon_sym_volatile] = ACTIONS(1023), + [anon_sym_sealed] = ACTIONS(1023), + [anon_sym_non_DASHsealed] = ACTIONS(1021), + [anon_sym_record] = ACTIONS(1023), + [anon_sym_ATinterface] = ACTIONS(1021), + [anon_sym_interface] = ACTIONS(1023), + [anon_sym_byte] = ACTIONS(1023), + [anon_sym_short] = ACTIONS(1023), + [anon_sym_int] = ACTIONS(1023), + [anon_sym_long] = ACTIONS(1023), + [anon_sym_char] = ACTIONS(1023), + [anon_sym_float] = ACTIONS(1023), + [anon_sym_double] = ACTIONS(1023), + [sym_boolean_type] = ACTIONS(1023), + [sym_void_type] = ACTIONS(1023), + [sym_this] = ACTIONS(1023), + [sym_super] = ACTIONS(1023), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(270)] = { + [ts_builtin_sym_end] = ACTIONS(1025), + [sym_identifier] = ACTIONS(1027), + [sym_decimal_integer_literal] = ACTIONS(1027), + [sym_hex_integer_literal] = ACTIONS(1027), + [sym_octal_integer_literal] = ACTIONS(1027), + [sym_binary_integer_literal] = ACTIONS(1025), + [sym_decimal_floating_point_literal] = ACTIONS(1025), + [sym_hex_floating_point_literal] = ACTIONS(1027), + [sym_true] = ACTIONS(1027), + [sym_false] = ACTIONS(1027), + [sym_character_literal] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [sym_null_literal] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_final] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_switch] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_case] = ACTIONS(1027), + [anon_sym_default] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_assert] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_yield] = ACTIONS(1027), + [anon_sym_synchronized] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(1027), + [anon_sym_try] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1027), + [anon_sym_open] = ACTIONS(1027), + [anon_sym_module] = ACTIONS(1027), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_package] = ACTIONS(1027), + [anon_sym_import] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1027), + [anon_sym_public] = ACTIONS(1027), + [anon_sym_protected] = ACTIONS(1027), + [anon_sym_private] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1027), + [anon_sym_strictfp] = ACTIONS(1027), + [anon_sym_native] = ACTIONS(1027), + [anon_sym_transient] = ACTIONS(1027), + [anon_sym_volatile] = ACTIONS(1027), + [anon_sym_sealed] = ACTIONS(1027), + [anon_sym_non_DASHsealed] = ACTIONS(1025), + [anon_sym_record] = ACTIONS(1027), + [anon_sym_ATinterface] = ACTIONS(1025), + [anon_sym_interface] = ACTIONS(1027), + [anon_sym_byte] = ACTIONS(1027), + [anon_sym_short] = ACTIONS(1027), + [anon_sym_int] = ACTIONS(1027), + [anon_sym_long] = ACTIONS(1027), + [anon_sym_char] = ACTIONS(1027), + [anon_sym_float] = ACTIONS(1027), + [anon_sym_double] = ACTIONS(1027), + [sym_boolean_type] = ACTIONS(1027), + [sym_void_type] = ACTIONS(1027), + [sym_this] = ACTIONS(1027), + [sym_super] = ACTIONS(1027), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(271)] = { + [ts_builtin_sym_end] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1031), + [sym_decimal_integer_literal] = ACTIONS(1031), + [sym_hex_integer_literal] = ACTIONS(1031), + [sym_octal_integer_literal] = ACTIONS(1031), + [sym_binary_integer_literal] = ACTIONS(1029), + [sym_decimal_floating_point_literal] = ACTIONS(1029), + [sym_hex_floating_point_literal] = ACTIONS(1031), + [sym_true] = ACTIONS(1031), + [sym_false] = ACTIONS(1031), + [sym_character_literal] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [sym_null_literal] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_final] = ACTIONS(1031), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_new] = ACTIONS(1031), + [anon_sym_class] = ACTIONS(1031), + [anon_sym_switch] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_case] = ACTIONS(1031), + [anon_sym_default] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_assert] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_synchronized] = ACTIONS(1031), + [anon_sym_throw] = ACTIONS(1031), + [anon_sym_try] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_AT] = ACTIONS(1031), + [anon_sym_open] = ACTIONS(1031), + [anon_sym_module] = ACTIONS(1031), + [anon_sym_static] = ACTIONS(1031), + [anon_sym_package] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(1031), + [anon_sym_enum] = ACTIONS(1031), + [anon_sym_public] = ACTIONS(1031), + [anon_sym_protected] = ACTIONS(1031), + [anon_sym_private] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1031), + [anon_sym_strictfp] = ACTIONS(1031), + [anon_sym_native] = ACTIONS(1031), + [anon_sym_transient] = ACTIONS(1031), + [anon_sym_volatile] = ACTIONS(1031), + [anon_sym_sealed] = ACTIONS(1031), + [anon_sym_non_DASHsealed] = ACTIONS(1029), + [anon_sym_record] = ACTIONS(1031), + [anon_sym_ATinterface] = ACTIONS(1029), + [anon_sym_interface] = ACTIONS(1031), + [anon_sym_byte] = ACTIONS(1031), + [anon_sym_short] = ACTIONS(1031), + [anon_sym_int] = ACTIONS(1031), + [anon_sym_long] = ACTIONS(1031), + [anon_sym_char] = ACTIONS(1031), + [anon_sym_float] = ACTIONS(1031), + [anon_sym_double] = ACTIONS(1031), + [sym_boolean_type] = ACTIONS(1031), + [sym_void_type] = ACTIONS(1031), + [sym_this] = ACTIONS(1031), + [sym_super] = ACTIONS(1031), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(272)] = { + [ts_builtin_sym_end] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1035), + [sym_decimal_integer_literal] = ACTIONS(1035), + [sym_hex_integer_literal] = ACTIONS(1035), + [sym_octal_integer_literal] = ACTIONS(1035), + [sym_binary_integer_literal] = ACTIONS(1033), + [sym_decimal_floating_point_literal] = ACTIONS(1033), + [sym_hex_floating_point_literal] = ACTIONS(1035), + [sym_true] = ACTIONS(1035), + [sym_false] = ACTIONS(1035), + [sym_character_literal] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1035), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [sym_null_literal] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_final] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(1035), + [anon_sym_switch] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_case] = ACTIONS(1035), + [anon_sym_default] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_assert] = ACTIONS(1035), + [anon_sym_do] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_yield] = ACTIONS(1035), + [anon_sym_synchronized] = ACTIONS(1035), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_AT] = ACTIONS(1035), + [anon_sym_open] = ACTIONS(1035), + [anon_sym_module] = ACTIONS(1035), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_package] = ACTIONS(1035), + [anon_sym_import] = ACTIONS(1035), + [anon_sym_enum] = ACTIONS(1035), + [anon_sym_public] = ACTIONS(1035), + [anon_sym_protected] = ACTIONS(1035), + [anon_sym_private] = ACTIONS(1035), + [anon_sym_abstract] = ACTIONS(1035), + [anon_sym_strictfp] = ACTIONS(1035), + [anon_sym_native] = ACTIONS(1035), + [anon_sym_transient] = ACTIONS(1035), + [anon_sym_volatile] = ACTIONS(1035), + [anon_sym_sealed] = ACTIONS(1035), + [anon_sym_non_DASHsealed] = ACTIONS(1033), + [anon_sym_record] = ACTIONS(1035), + [anon_sym_ATinterface] = ACTIONS(1033), + [anon_sym_interface] = ACTIONS(1035), + [anon_sym_byte] = ACTIONS(1035), + [anon_sym_short] = ACTIONS(1035), + [anon_sym_int] = ACTIONS(1035), + [anon_sym_long] = ACTIONS(1035), + [anon_sym_char] = ACTIONS(1035), + [anon_sym_float] = ACTIONS(1035), + [anon_sym_double] = ACTIONS(1035), + [sym_boolean_type] = ACTIONS(1035), + [sym_void_type] = ACTIONS(1035), + [sym_this] = ACTIONS(1035), + [sym_super] = ACTIONS(1035), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(273)] = { + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(1039), + [sym_decimal_integer_literal] = ACTIONS(1039), + [sym_hex_integer_literal] = ACTIONS(1039), + [sym_octal_integer_literal] = ACTIONS(1039), + [sym_binary_integer_literal] = ACTIONS(1037), + [sym_decimal_floating_point_literal] = ACTIONS(1037), + [sym_hex_floating_point_literal] = ACTIONS(1039), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [sym_character_literal] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [sym_null_literal] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_final] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1039), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_SEMI] = ACTIONS(1037), + [anon_sym_assert] = ACTIONS(1039), + [anon_sym_do] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_yield] = ACTIONS(1039), + [anon_sym_synchronized] = ACTIONS(1039), + [anon_sym_throw] = ACTIONS(1039), + [anon_sym_try] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym_open] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_package] = ACTIONS(1039), + [anon_sym_import] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_abstract] = ACTIONS(1039), + [anon_sym_strictfp] = ACTIONS(1039), + [anon_sym_native] = ACTIONS(1039), + [anon_sym_transient] = ACTIONS(1039), + [anon_sym_volatile] = ACTIONS(1039), + [anon_sym_sealed] = ACTIONS(1039), + [anon_sym_non_DASHsealed] = ACTIONS(1037), + [anon_sym_record] = ACTIONS(1039), + [anon_sym_ATinterface] = ACTIONS(1037), + [anon_sym_interface] = ACTIONS(1039), + [anon_sym_byte] = ACTIONS(1039), + [anon_sym_short] = ACTIONS(1039), + [anon_sym_int] = ACTIONS(1039), + [anon_sym_long] = ACTIONS(1039), + [anon_sym_char] = ACTIONS(1039), + [anon_sym_float] = ACTIONS(1039), + [anon_sym_double] = ACTIONS(1039), + [sym_boolean_type] = ACTIONS(1039), + [sym_void_type] = ACTIONS(1039), + [sym_this] = ACTIONS(1039), + [sym_super] = ACTIONS(1039), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(274)] = { + [ts_builtin_sym_end] = ACTIONS(1041), + [sym_identifier] = ACTIONS(1043), + [sym_decimal_integer_literal] = ACTIONS(1043), + [sym_hex_integer_literal] = ACTIONS(1043), + [sym_octal_integer_literal] = ACTIONS(1043), + [sym_binary_integer_literal] = ACTIONS(1041), + [sym_decimal_floating_point_literal] = ACTIONS(1041), + [sym_hex_floating_point_literal] = ACTIONS(1043), + [sym_true] = ACTIONS(1043), + [sym_false] = ACTIONS(1043), + [sym_character_literal] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1043), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [sym_null_literal] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1043), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_final] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [anon_sym_new] = ACTIONS(1043), + [anon_sym_class] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_assert] = ACTIONS(1043), + [anon_sym_do] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_yield] = ACTIONS(1043), + [anon_sym_synchronized] = ACTIONS(1043), + [anon_sym_throw] = ACTIONS(1043), + [anon_sym_try] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym_open] = ACTIONS(1043), + [anon_sym_module] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_package] = ACTIONS(1043), + [anon_sym_import] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1043), + [anon_sym_public] = ACTIONS(1043), + [anon_sym_protected] = ACTIONS(1043), + [anon_sym_private] = ACTIONS(1043), + [anon_sym_abstract] = ACTIONS(1043), + [anon_sym_strictfp] = ACTIONS(1043), + [anon_sym_native] = ACTIONS(1043), + [anon_sym_transient] = ACTIONS(1043), + [anon_sym_volatile] = ACTIONS(1043), + [anon_sym_sealed] = ACTIONS(1043), + [anon_sym_non_DASHsealed] = ACTIONS(1041), + [anon_sym_record] = ACTIONS(1043), + [anon_sym_ATinterface] = ACTIONS(1041), + [anon_sym_interface] = ACTIONS(1043), + [anon_sym_byte] = ACTIONS(1043), + [anon_sym_short] = ACTIONS(1043), + [anon_sym_int] = ACTIONS(1043), + [anon_sym_long] = ACTIONS(1043), + [anon_sym_char] = ACTIONS(1043), + [anon_sym_float] = ACTIONS(1043), + [anon_sym_double] = ACTIONS(1043), + [sym_boolean_type] = ACTIONS(1043), + [sym_void_type] = ACTIONS(1043), + [sym_this] = ACTIONS(1043), + [sym_super] = ACTIONS(1043), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(275)] = { + [ts_builtin_sym_end] = ACTIONS(1045), + [sym_identifier] = ACTIONS(1047), + [sym_decimal_integer_literal] = ACTIONS(1047), + [sym_hex_integer_literal] = ACTIONS(1047), + [sym_octal_integer_literal] = ACTIONS(1047), + [sym_binary_integer_literal] = ACTIONS(1045), + [sym_decimal_floating_point_literal] = ACTIONS(1045), + [sym_hex_floating_point_literal] = ACTIONS(1047), + [sym_true] = ACTIONS(1047), + [sym_false] = ACTIONS(1047), + [sym_character_literal] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1045), + [sym_null_literal] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_final] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_PLUS_PLUS] = ACTIONS(1045), + [anon_sym_DASH_DASH] = ACTIONS(1045), + [anon_sym_new] = ACTIONS(1047), + [anon_sym_class] = ACTIONS(1047), + [anon_sym_switch] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_case] = ACTIONS(1047), + [anon_sym_default] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_assert] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_yield] = ACTIONS(1047), + [anon_sym_synchronized] = ACTIONS(1047), + [anon_sym_throw] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_AT] = ACTIONS(1047), + [anon_sym_open] = ACTIONS(1047), + [anon_sym_module] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_package] = ACTIONS(1047), + [anon_sym_import] = ACTIONS(1047), + [anon_sym_enum] = ACTIONS(1047), + [anon_sym_public] = ACTIONS(1047), + [anon_sym_protected] = ACTIONS(1047), + [anon_sym_private] = ACTIONS(1047), + [anon_sym_abstract] = ACTIONS(1047), + [anon_sym_strictfp] = ACTIONS(1047), + [anon_sym_native] = ACTIONS(1047), + [anon_sym_transient] = ACTIONS(1047), + [anon_sym_volatile] = ACTIONS(1047), + [anon_sym_sealed] = ACTIONS(1047), + [anon_sym_non_DASHsealed] = ACTIONS(1045), + [anon_sym_record] = ACTIONS(1047), + [anon_sym_ATinterface] = ACTIONS(1045), + [anon_sym_interface] = ACTIONS(1047), + [anon_sym_byte] = ACTIONS(1047), + [anon_sym_short] = ACTIONS(1047), + [anon_sym_int] = ACTIONS(1047), + [anon_sym_long] = ACTIONS(1047), + [anon_sym_char] = ACTIONS(1047), + [anon_sym_float] = ACTIONS(1047), + [anon_sym_double] = ACTIONS(1047), + [sym_boolean_type] = ACTIONS(1047), + [sym_void_type] = ACTIONS(1047), + [sym_this] = ACTIONS(1047), + [sym_super] = ACTIONS(1047), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(276)] = { + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_identifier] = ACTIONS(1051), + [sym_decimal_integer_literal] = ACTIONS(1051), + [sym_hex_integer_literal] = ACTIONS(1051), + [sym_octal_integer_literal] = ACTIONS(1051), + [sym_binary_integer_literal] = ACTIONS(1049), + [sym_decimal_floating_point_literal] = ACTIONS(1049), + [sym_hex_floating_point_literal] = ACTIONS(1051), + [sym_true] = ACTIONS(1051), + [sym_false] = ACTIONS(1051), + [sym_character_literal] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [sym_null_literal] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_final] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_new] = ACTIONS(1051), + [anon_sym_class] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_case] = ACTIONS(1051), + [anon_sym_default] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_assert] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_synchronized] = ACTIONS(1051), + [anon_sym_throw] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_open] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_static] = ACTIONS(1051), + [anon_sym_package] = ACTIONS(1051), + [anon_sym_import] = ACTIONS(1051), + [anon_sym_enum] = ACTIONS(1051), + [anon_sym_public] = ACTIONS(1051), + [anon_sym_protected] = ACTIONS(1051), + [anon_sym_private] = ACTIONS(1051), + [anon_sym_abstract] = ACTIONS(1051), + [anon_sym_strictfp] = ACTIONS(1051), + [anon_sym_native] = ACTIONS(1051), + [anon_sym_transient] = ACTIONS(1051), + [anon_sym_volatile] = ACTIONS(1051), + [anon_sym_sealed] = ACTIONS(1051), + [anon_sym_non_DASHsealed] = ACTIONS(1049), + [anon_sym_record] = ACTIONS(1051), + [anon_sym_ATinterface] = ACTIONS(1049), + [anon_sym_interface] = ACTIONS(1051), + [anon_sym_byte] = ACTIONS(1051), + [anon_sym_short] = ACTIONS(1051), + [anon_sym_int] = ACTIONS(1051), + [anon_sym_long] = ACTIONS(1051), + [anon_sym_char] = ACTIONS(1051), + [anon_sym_float] = ACTIONS(1051), + [anon_sym_double] = ACTIONS(1051), + [sym_boolean_type] = ACTIONS(1051), + [sym_void_type] = ACTIONS(1051), + [sym_this] = ACTIONS(1051), + [sym_super] = ACTIONS(1051), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(277)] = { + [ts_builtin_sym_end] = ACTIONS(1053), + [sym_identifier] = ACTIONS(1055), + [sym_decimal_integer_literal] = ACTIONS(1055), + [sym_hex_integer_literal] = ACTIONS(1055), + [sym_octal_integer_literal] = ACTIONS(1055), + [sym_binary_integer_literal] = ACTIONS(1053), + [sym_decimal_floating_point_literal] = ACTIONS(1053), + [sym_hex_floating_point_literal] = ACTIONS(1055), + [sym_true] = ACTIONS(1055), + [sym_false] = ACTIONS(1055), + [sym_character_literal] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1053), + [sym_null_literal] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_final] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_TILDE] = ACTIONS(1053), + [anon_sym_PLUS_PLUS] = ACTIONS(1053), + [anon_sym_DASH_DASH] = ACTIONS(1053), + [anon_sym_new] = ACTIONS(1055), + [anon_sym_class] = ACTIONS(1055), + [anon_sym_switch] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_case] = ACTIONS(1055), + [anon_sym_default] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1053), + [anon_sym_assert] = ACTIONS(1055), + [anon_sym_do] = ACTIONS(1055), + [anon_sym_while] = ACTIONS(1055), + [anon_sym_break] = ACTIONS(1055), + [anon_sym_continue] = ACTIONS(1055), + [anon_sym_return] = ACTIONS(1055), + [anon_sym_yield] = ACTIONS(1055), + [anon_sym_synchronized] = ACTIONS(1055), + [anon_sym_throw] = ACTIONS(1055), + [anon_sym_try] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(1055), + [anon_sym_else] = ACTIONS(1055), + [anon_sym_for] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1055), + [anon_sym_open] = ACTIONS(1055), + [anon_sym_module] = ACTIONS(1055), + [anon_sym_static] = ACTIONS(1055), + [anon_sym_package] = ACTIONS(1055), + [anon_sym_import] = ACTIONS(1055), + [anon_sym_enum] = ACTIONS(1055), + [anon_sym_public] = ACTIONS(1055), + [anon_sym_protected] = ACTIONS(1055), + [anon_sym_private] = ACTIONS(1055), + [anon_sym_abstract] = ACTIONS(1055), + [anon_sym_strictfp] = ACTIONS(1055), + [anon_sym_native] = ACTIONS(1055), + [anon_sym_transient] = ACTIONS(1055), + [anon_sym_volatile] = ACTIONS(1055), + [anon_sym_sealed] = ACTIONS(1055), + [anon_sym_non_DASHsealed] = ACTIONS(1053), + [anon_sym_record] = ACTIONS(1055), + [anon_sym_ATinterface] = ACTIONS(1053), + [anon_sym_interface] = ACTIONS(1055), + [anon_sym_byte] = ACTIONS(1055), + [anon_sym_short] = ACTIONS(1055), + [anon_sym_int] = ACTIONS(1055), + [anon_sym_long] = ACTIONS(1055), + [anon_sym_char] = ACTIONS(1055), + [anon_sym_float] = ACTIONS(1055), + [anon_sym_double] = ACTIONS(1055), + [sym_boolean_type] = ACTIONS(1055), + [sym_void_type] = ACTIONS(1055), + [sym_this] = ACTIONS(1055), + [sym_super] = ACTIONS(1055), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(278)] = { + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [sym_decimal_integer_literal] = ACTIONS(1059), + [sym_hex_integer_literal] = ACTIONS(1059), + [sym_octal_integer_literal] = ACTIONS(1059), + [sym_binary_integer_literal] = ACTIONS(1057), + [sym_decimal_floating_point_literal] = ACTIONS(1057), + [sym_hex_floating_point_literal] = ACTIONS(1059), + [sym_true] = ACTIONS(1059), + [sym_false] = ACTIONS(1059), + [sym_character_literal] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1057), + [sym_null_literal] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_final] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_class] = ACTIONS(1059), + [anon_sym_switch] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_case] = ACTIONS(1059), + [anon_sym_default] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1057), + [anon_sym_assert] = ACTIONS(1059), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_synchronized] = ACTIONS(1059), + [anon_sym_throw] = ACTIONS(1059), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_else] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_open] = ACTIONS(1059), + [anon_sym_module] = ACTIONS(1059), + [anon_sym_static] = ACTIONS(1059), + [anon_sym_package] = ACTIONS(1059), + [anon_sym_import] = ACTIONS(1059), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_public] = ACTIONS(1059), + [anon_sym_protected] = ACTIONS(1059), + [anon_sym_private] = ACTIONS(1059), + [anon_sym_abstract] = ACTIONS(1059), + [anon_sym_strictfp] = ACTIONS(1059), + [anon_sym_native] = ACTIONS(1059), + [anon_sym_transient] = ACTIONS(1059), + [anon_sym_volatile] = ACTIONS(1059), + [anon_sym_sealed] = ACTIONS(1059), + [anon_sym_non_DASHsealed] = ACTIONS(1057), + [anon_sym_record] = ACTIONS(1059), + [anon_sym_ATinterface] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1059), + [anon_sym_byte] = ACTIONS(1059), + [anon_sym_short] = ACTIONS(1059), + [anon_sym_int] = ACTIONS(1059), + [anon_sym_long] = ACTIONS(1059), + [anon_sym_char] = ACTIONS(1059), + [anon_sym_float] = ACTIONS(1059), + [anon_sym_double] = ACTIONS(1059), + [sym_boolean_type] = ACTIONS(1059), + [sym_void_type] = ACTIONS(1059), + [sym_this] = ACTIONS(1059), + [sym_super] = ACTIONS(1059), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(279)] = { + [ts_builtin_sym_end] = ACTIONS(474), + [sym_identifier] = ACTIONS(476), + [sym_decimal_integer_literal] = ACTIONS(476), + [sym_hex_integer_literal] = ACTIONS(476), + [sym_octal_integer_literal] = ACTIONS(476), + [sym_binary_integer_literal] = ACTIONS(474), + [sym_decimal_floating_point_literal] = ACTIONS(474), + [sym_hex_floating_point_literal] = ACTIONS(476), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_character_literal] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(476), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [sym_null_literal] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), + [anon_sym_new] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_switch] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_case] = ACTIONS(476), + [anon_sym_default] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_assert] = ACTIONS(476), + [anon_sym_do] = ACTIONS(476), + [anon_sym_while] = ACTIONS(476), + [anon_sym_break] = ACTIONS(476), + [anon_sym_continue] = ACTIONS(476), + [anon_sym_return] = ACTIONS(476), + [anon_sym_yield] = ACTIONS(476), + [anon_sym_synchronized] = ACTIONS(476), + [anon_sym_throw] = ACTIONS(476), + [anon_sym_try] = ACTIONS(476), + [anon_sym_if] = ACTIONS(476), + [anon_sym_else] = ACTIONS(476), + [anon_sym_for] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_open] = ACTIONS(476), + [anon_sym_module] = ACTIONS(476), + [anon_sym_static] = ACTIONS(476), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_enum] = ACTIONS(476), + [anon_sym_public] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_strictfp] = ACTIONS(476), + [anon_sym_native] = ACTIONS(476), + [anon_sym_transient] = ACTIONS(476), + [anon_sym_volatile] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_non_DASHsealed] = ACTIONS(474), + [anon_sym_record] = ACTIONS(476), + [anon_sym_ATinterface] = ACTIONS(474), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_byte] = ACTIONS(476), + [anon_sym_short] = ACTIONS(476), + [anon_sym_int] = ACTIONS(476), + [anon_sym_long] = ACTIONS(476), + [anon_sym_char] = ACTIONS(476), + [anon_sym_float] = ACTIONS(476), + [anon_sym_double] = ACTIONS(476), + [sym_boolean_type] = ACTIONS(476), + [sym_void_type] = ACTIONS(476), + [sym_this] = ACTIONS(476), + [sym_super] = ACTIONS(476), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(280)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(700), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(281)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(713), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1063), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(282)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(679), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(1065), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(783), - [sym_identifier] = ACTIONS(785), - [sym_decimal_integer_literal] = ACTIONS(785), - [sym_hex_integer_literal] = ACTIONS(785), - [sym_octal_integer_literal] = ACTIONS(785), - [sym_binary_integer_literal] = ACTIONS(783), - [sym_decimal_floating_point_literal] = ACTIONS(783), - [sym_hex_floating_point_literal] = ACTIONS(785), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_character_literal] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(785), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(783), - [sym_null_literal] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_final] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_TILDE] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_new] = ACTIONS(785), - [anon_sym_class] = ACTIONS(785), - [anon_sym_switch] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(783), - [anon_sym_case] = ACTIONS(785), - [anon_sym_default] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(783), - [anon_sym_assert] = ACTIONS(785), - [anon_sym_do] = ACTIONS(785), - [anon_sym_while] = ACTIONS(785), - [anon_sym_break] = ACTIONS(785), - [anon_sym_continue] = ACTIONS(785), - [anon_sym_return] = ACTIONS(785), - [anon_sym_yield] = ACTIONS(785), - [anon_sym_synchronized] = ACTIONS(785), - [anon_sym_throw] = ACTIONS(785), - [anon_sym_try] = ACTIONS(785), - [anon_sym_if] = ACTIONS(785), - [anon_sym_else] = ACTIONS(785), - [anon_sym_for] = ACTIONS(785), - [anon_sym_AT] = ACTIONS(785), - [anon_sym_open] = ACTIONS(785), - [anon_sym_module] = ACTIONS(785), - [anon_sym_static] = ACTIONS(785), - [anon_sym_with] = ACTIONS(785), - [anon_sym_package] = ACTIONS(785), - [anon_sym_import] = ACTIONS(785), - [anon_sym_enum] = ACTIONS(785), - [anon_sym_public] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_abstract] = ACTIONS(785), - [anon_sym_strictfp] = ACTIONS(785), - [anon_sym_native] = ACTIONS(785), - [anon_sym_transient] = ACTIONS(785), - [anon_sym_volatile] = ACTIONS(785), - [anon_sym_sealed] = ACTIONS(785), - [anon_sym_non_DASHsealed] = ACTIONS(783), - [anon_sym_record] = ACTIONS(785), - [anon_sym_ATinterface] = ACTIONS(783), - [anon_sym_interface] = ACTIONS(785), - [anon_sym_byte] = ACTIONS(785), - [anon_sym_short] = ACTIONS(785), - [anon_sym_int] = ACTIONS(785), - [anon_sym_long] = ACTIONS(785), - [anon_sym_char] = ACTIONS(785), - [anon_sym_float] = ACTIONS(785), - [anon_sym_double] = ACTIONS(785), - [sym_boolean_type] = ACTIONS(785), - [sym_void_type] = ACTIONS(785), - [sym_this] = ACTIONS(785), - [sym_super] = ACTIONS(785), + [STATE(283)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(686), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(1067), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(787), - [sym_identifier] = ACTIONS(789), - [sym_decimal_integer_literal] = ACTIONS(789), - [sym_hex_integer_literal] = ACTIONS(789), - [sym_octal_integer_literal] = ACTIONS(789), - [sym_binary_integer_literal] = ACTIONS(787), - [sym_decimal_floating_point_literal] = ACTIONS(787), - [sym_hex_floating_point_literal] = ACTIONS(789), - [sym_true] = ACTIONS(789), - [sym_false] = ACTIONS(789), - [sym_character_literal] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(789), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), - [anon_sym_RBRACE] = ACTIONS(787), - [sym_null_literal] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_final] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_new] = ACTIONS(789), - [anon_sym_class] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(787), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(787), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_do] = ACTIONS(789), - [anon_sym_while] = ACTIONS(789), - [anon_sym_break] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_return] = ACTIONS(789), - [anon_sym_yield] = ACTIONS(789), - [anon_sym_synchronized] = ACTIONS(789), - [anon_sym_throw] = ACTIONS(789), - [anon_sym_try] = ACTIONS(789), - [anon_sym_if] = ACTIONS(789), - [anon_sym_else] = ACTIONS(789), - [anon_sym_for] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_open] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_static] = ACTIONS(789), - [anon_sym_with] = ACTIONS(789), - [anon_sym_package] = ACTIONS(789), - [anon_sym_import] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_abstract] = ACTIONS(789), - [anon_sym_strictfp] = ACTIONS(789), - [anon_sym_native] = ACTIONS(789), - [anon_sym_transient] = ACTIONS(789), - [anon_sym_volatile] = ACTIONS(789), - [anon_sym_sealed] = ACTIONS(789), - [anon_sym_non_DASHsealed] = ACTIONS(787), - [anon_sym_record] = ACTIONS(789), - [anon_sym_ATinterface] = ACTIONS(787), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_byte] = ACTIONS(789), - [anon_sym_short] = ACTIONS(789), - [anon_sym_int] = ACTIONS(789), - [anon_sym_long] = ACTIONS(789), - [anon_sym_char] = ACTIONS(789), - [anon_sym_float] = ACTIONS(789), - [anon_sym_double] = ACTIONS(789), - [sym_boolean_type] = ACTIONS(789), - [sym_void_type] = ACTIONS(789), - [sym_this] = ACTIONS(789), - [sym_super] = ACTIONS(789), + [STATE(284)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(627), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(791), - [sym_identifier] = ACTIONS(793), - [sym_decimal_integer_literal] = ACTIONS(793), - [sym_hex_integer_literal] = ACTIONS(793), - [sym_octal_integer_literal] = ACTIONS(793), - [sym_binary_integer_literal] = ACTIONS(791), - [sym_decimal_floating_point_literal] = ACTIONS(791), - [sym_hex_floating_point_literal] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [sym_character_literal] = ACTIONS(791), - [anon_sym_DQUOTE] = ACTIONS(793), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [sym_null_literal] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(791), - [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(791), - [anon_sym_new] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_yield] = ACTIONS(793), - [anon_sym_synchronized] = ACTIONS(793), - [anon_sym_throw] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_else] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_AT] = ACTIONS(793), - [anon_sym_open] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_static] = ACTIONS(793), - [anon_sym_with] = ACTIONS(793), - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_enum] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_strictfp] = ACTIONS(793), - [anon_sym_native] = ACTIONS(793), - [anon_sym_transient] = ACTIONS(793), - [anon_sym_volatile] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_non_DASHsealed] = ACTIONS(791), - [anon_sym_record] = ACTIONS(793), - [anon_sym_ATinterface] = ACTIONS(791), - [anon_sym_interface] = ACTIONS(793), - [anon_sym_byte] = ACTIONS(793), - [anon_sym_short] = ACTIONS(793), - [anon_sym_int] = ACTIONS(793), - [anon_sym_long] = ACTIONS(793), - [anon_sym_char] = ACTIONS(793), - [anon_sym_float] = ACTIONS(793), - [anon_sym_double] = ACTIONS(793), - [sym_boolean_type] = ACTIONS(793), - [sym_void_type] = ACTIONS(793), - [sym_this] = ACTIONS(793), - [sym_super] = ACTIONS(793), + [STATE(285)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(679), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(1071), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(286)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(686), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_RBRACK] = ACTIONS(1073), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(795), - [sym_identifier] = ACTIONS(797), - [sym_decimal_integer_literal] = ACTIONS(797), - [sym_hex_integer_literal] = ACTIONS(797), - [sym_octal_integer_literal] = ACTIONS(797), - [sym_binary_integer_literal] = ACTIONS(795), - [sym_decimal_floating_point_literal] = ACTIONS(795), - [sym_hex_floating_point_literal] = ACTIONS(797), - [sym_true] = ACTIONS(797), - [sym_false] = ACTIONS(797), - [sym_character_literal] = ACTIONS(795), - [anon_sym_DQUOTE] = ACTIONS(797), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(795), - [anon_sym_RBRACE] = ACTIONS(795), - [sym_null_literal] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(797), - [anon_sym_DASH] = ACTIONS(797), - [anon_sym_final] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(795), - [anon_sym_TILDE] = ACTIONS(795), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_DASH_DASH] = ACTIONS(795), - [anon_sym_new] = ACTIONS(797), - [anon_sym_class] = ACTIONS(797), - [anon_sym_switch] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_case] = ACTIONS(797), - [anon_sym_default] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_assert] = ACTIONS(797), - [anon_sym_do] = ACTIONS(797), - [anon_sym_while] = ACTIONS(797), - [anon_sym_break] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(797), - [anon_sym_return] = ACTIONS(797), - [anon_sym_yield] = ACTIONS(797), - [anon_sym_synchronized] = ACTIONS(797), - [anon_sym_throw] = ACTIONS(797), - [anon_sym_try] = ACTIONS(797), - [anon_sym_if] = ACTIONS(797), - [anon_sym_else] = ACTIONS(797), - [anon_sym_for] = ACTIONS(797), - [anon_sym_AT] = ACTIONS(797), - [anon_sym_open] = ACTIONS(797), - [anon_sym_module] = ACTIONS(797), - [anon_sym_static] = ACTIONS(797), - [anon_sym_with] = ACTIONS(797), - [anon_sym_package] = ACTIONS(797), - [anon_sym_import] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(797), - [anon_sym_public] = ACTIONS(797), - [anon_sym_protected] = ACTIONS(797), - [anon_sym_private] = ACTIONS(797), - [anon_sym_abstract] = ACTIONS(797), - [anon_sym_strictfp] = ACTIONS(797), - [anon_sym_native] = ACTIONS(797), - [anon_sym_transient] = ACTIONS(797), - [anon_sym_volatile] = ACTIONS(797), - [anon_sym_sealed] = ACTIONS(797), - [anon_sym_non_DASHsealed] = ACTIONS(795), - [anon_sym_record] = ACTIONS(797), - [anon_sym_ATinterface] = ACTIONS(795), - [anon_sym_interface] = ACTIONS(797), - [anon_sym_byte] = ACTIONS(797), - [anon_sym_short] = ACTIONS(797), - [anon_sym_int] = ACTIONS(797), - [anon_sym_long] = ACTIONS(797), - [anon_sym_char] = ACTIONS(797), - [anon_sym_float] = ACTIONS(797), - [anon_sym_double] = ACTIONS(797), - [sym_boolean_type] = ACTIONS(797), - [sym_void_type] = ACTIONS(797), - [sym_this] = ACTIONS(797), - [sym_super] = ACTIONS(797), + [STATE(287)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(634), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(799), - [sym_identifier] = ACTIONS(801), - [sym_decimal_integer_literal] = ACTIONS(801), - [sym_hex_integer_literal] = ACTIONS(801), - [sym_octal_integer_literal] = ACTIONS(801), - [sym_binary_integer_literal] = ACTIONS(799), - [sym_decimal_floating_point_literal] = ACTIONS(799), - [sym_hex_floating_point_literal] = ACTIONS(801), - [sym_true] = ACTIONS(801), - [sym_false] = ACTIONS(801), - [sym_character_literal] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(801), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [sym_null_literal] = ACTIONS(801), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(799), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_final] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_PLUS_PLUS] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(799), - [anon_sym_new] = ACTIONS(801), - [anon_sym_class] = ACTIONS(801), - [anon_sym_switch] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_case] = ACTIONS(801), - [anon_sym_default] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(799), - [anon_sym_assert] = ACTIONS(801), - [anon_sym_do] = ACTIONS(801), - [anon_sym_while] = ACTIONS(801), - [anon_sym_break] = ACTIONS(801), - [anon_sym_continue] = ACTIONS(801), - [anon_sym_return] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(801), - [anon_sym_synchronized] = ACTIONS(801), - [anon_sym_throw] = ACTIONS(801), - [anon_sym_try] = ACTIONS(801), - [anon_sym_if] = ACTIONS(801), - [anon_sym_else] = ACTIONS(801), - [anon_sym_for] = ACTIONS(801), - [anon_sym_AT] = ACTIONS(801), - [anon_sym_open] = ACTIONS(801), - [anon_sym_module] = ACTIONS(801), - [anon_sym_static] = ACTIONS(801), - [anon_sym_with] = ACTIONS(801), - [anon_sym_package] = ACTIONS(801), - [anon_sym_import] = ACTIONS(801), - [anon_sym_enum] = ACTIONS(801), - [anon_sym_public] = ACTIONS(801), - [anon_sym_protected] = ACTIONS(801), - [anon_sym_private] = ACTIONS(801), - [anon_sym_abstract] = ACTIONS(801), - [anon_sym_strictfp] = ACTIONS(801), - [anon_sym_native] = ACTIONS(801), - [anon_sym_transient] = ACTIONS(801), - [anon_sym_volatile] = ACTIONS(801), - [anon_sym_sealed] = ACTIONS(801), - [anon_sym_non_DASHsealed] = ACTIONS(799), - [anon_sym_record] = ACTIONS(801), - [anon_sym_ATinterface] = ACTIONS(799), - [anon_sym_interface] = ACTIONS(801), - [anon_sym_byte] = ACTIONS(801), - [anon_sym_short] = ACTIONS(801), - [anon_sym_int] = ACTIONS(801), - [anon_sym_long] = ACTIONS(801), - [anon_sym_char] = ACTIONS(801), - [anon_sym_float] = ACTIONS(801), - [anon_sym_double] = ACTIONS(801), - [sym_boolean_type] = ACTIONS(801), - [sym_void_type] = ACTIONS(801), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(801), + [STATE(288)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(702), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(803), - [sym_identifier] = ACTIONS(805), - [sym_decimal_integer_literal] = ACTIONS(805), - [sym_hex_integer_literal] = ACTIONS(805), - [sym_octal_integer_literal] = ACTIONS(805), - [sym_binary_integer_literal] = ACTIONS(803), - [sym_decimal_floating_point_literal] = ACTIONS(803), - [sym_hex_floating_point_literal] = ACTIONS(805), - [sym_true] = ACTIONS(805), - [sym_false] = ACTIONS(805), - [sym_character_literal] = ACTIONS(803), - [anon_sym_DQUOTE] = ACTIONS(805), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(803), - [anon_sym_RBRACE] = ACTIONS(803), - [sym_null_literal] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_final] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_TILDE] = ACTIONS(803), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(805), - [anon_sym_class] = ACTIONS(805), - [anon_sym_switch] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(803), - [anon_sym_case] = ACTIONS(805), - [anon_sym_default] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_assert] = ACTIONS(805), - [anon_sym_do] = ACTIONS(805), - [anon_sym_while] = ACTIONS(805), - [anon_sym_break] = ACTIONS(805), - [anon_sym_continue] = ACTIONS(805), - [anon_sym_return] = ACTIONS(805), - [anon_sym_yield] = ACTIONS(805), - [anon_sym_synchronized] = ACTIONS(805), - [anon_sym_throw] = ACTIONS(805), - [anon_sym_try] = ACTIONS(805), - [anon_sym_if] = ACTIONS(805), - [anon_sym_else] = ACTIONS(805), - [anon_sym_for] = ACTIONS(805), - [anon_sym_AT] = ACTIONS(805), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_static] = ACTIONS(805), - [anon_sym_with] = ACTIONS(805), - [anon_sym_package] = ACTIONS(805), - [anon_sym_import] = ACTIONS(805), - [anon_sym_enum] = ACTIONS(805), - [anon_sym_public] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_abstract] = ACTIONS(805), - [anon_sym_strictfp] = ACTIONS(805), - [anon_sym_native] = ACTIONS(805), - [anon_sym_transient] = ACTIONS(805), - [anon_sym_volatile] = ACTIONS(805), - [anon_sym_sealed] = ACTIONS(805), - [anon_sym_non_DASHsealed] = ACTIONS(803), - [anon_sym_record] = ACTIONS(805), - [anon_sym_ATinterface] = ACTIONS(803), - [anon_sym_interface] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(805), - [anon_sym_short] = ACTIONS(805), - [anon_sym_int] = ACTIONS(805), - [anon_sym_long] = ACTIONS(805), - [anon_sym_char] = ACTIONS(805), - [anon_sym_float] = ACTIONS(805), - [anon_sym_double] = ACTIONS(805), - [sym_boolean_type] = ACTIONS(805), - [sym_void_type] = ACTIONS(805), - [sym_this] = ACTIONS(805), - [sym_super] = ACTIONS(805), + [STATE(289)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(635), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(807), - [sym_identifier] = ACTIONS(809), - [sym_decimal_integer_literal] = ACTIONS(809), - [sym_hex_integer_literal] = ACTIONS(809), - [sym_octal_integer_literal] = ACTIONS(809), - [sym_binary_integer_literal] = ACTIONS(807), - [sym_decimal_floating_point_literal] = ACTIONS(807), - [sym_hex_floating_point_literal] = ACTIONS(809), - [sym_true] = ACTIONS(809), - [sym_false] = ACTIONS(809), - [sym_character_literal] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [sym_null_literal] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_final] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_TILDE] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_class] = ACTIONS(809), - [anon_sym_switch] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_case] = ACTIONS(809), - [anon_sym_default] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_assert] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_while] = ACTIONS(809), - [anon_sym_break] = ACTIONS(809), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_return] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(809), - [anon_sym_synchronized] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(809), - [anon_sym_try] = ACTIONS(809), - [anon_sym_if] = ACTIONS(809), - [anon_sym_else] = ACTIONS(809), - [anon_sym_for] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(809), - [anon_sym_open] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_static] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_package] = ACTIONS(809), - [anon_sym_import] = ACTIONS(809), - [anon_sym_enum] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_abstract] = ACTIONS(809), - [anon_sym_strictfp] = ACTIONS(809), - [anon_sym_native] = ACTIONS(809), - [anon_sym_transient] = ACTIONS(809), - [anon_sym_volatile] = ACTIONS(809), - [anon_sym_sealed] = ACTIONS(809), - [anon_sym_non_DASHsealed] = ACTIONS(807), - [anon_sym_record] = ACTIONS(809), - [anon_sym_ATinterface] = ACTIONS(807), - [anon_sym_interface] = ACTIONS(809), - [anon_sym_byte] = ACTIONS(809), - [anon_sym_short] = ACTIONS(809), - [anon_sym_int] = ACTIONS(809), - [anon_sym_long] = ACTIONS(809), - [anon_sym_char] = ACTIONS(809), - [anon_sym_float] = ACTIONS(809), - [anon_sym_double] = ACTIONS(809), - [sym_boolean_type] = ACTIONS(809), - [sym_void_type] = ACTIONS(809), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(809), + [STATE(290)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(636), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(811), - [sym_identifier] = ACTIONS(813), - [sym_decimal_integer_literal] = ACTIONS(813), - [sym_hex_integer_literal] = ACTIONS(813), - [sym_octal_integer_literal] = ACTIONS(813), - [sym_binary_integer_literal] = ACTIONS(811), - [sym_decimal_floating_point_literal] = ACTIONS(811), - [sym_hex_floating_point_literal] = ACTIONS(813), - [sym_true] = ACTIONS(813), - [sym_false] = ACTIONS(813), - [sym_character_literal] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(813), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [sym_null_literal] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_final] = ACTIONS(813), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_PLUS_PLUS] = ACTIONS(811), - [anon_sym_DASH_DASH] = ACTIONS(811), - [anon_sym_new] = ACTIONS(813), - [anon_sym_class] = ACTIONS(813), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_case] = ACTIONS(813), - [anon_sym_default] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_assert] = ACTIONS(813), - [anon_sym_do] = ACTIONS(813), - [anon_sym_while] = ACTIONS(813), - [anon_sym_break] = ACTIONS(813), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_return] = ACTIONS(813), - [anon_sym_yield] = ACTIONS(813), - [anon_sym_synchronized] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_try] = ACTIONS(813), - [anon_sym_if] = ACTIONS(813), - [anon_sym_else] = ACTIONS(813), - [anon_sym_for] = ACTIONS(813), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_open] = ACTIONS(813), - [anon_sym_module] = ACTIONS(813), - [anon_sym_static] = ACTIONS(813), - [anon_sym_with] = ACTIONS(813), - [anon_sym_package] = ACTIONS(813), - [anon_sym_import] = ACTIONS(813), - [anon_sym_enum] = ACTIONS(813), - [anon_sym_public] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_abstract] = ACTIONS(813), - [anon_sym_strictfp] = ACTIONS(813), - [anon_sym_native] = ACTIONS(813), - [anon_sym_transient] = ACTIONS(813), - [anon_sym_volatile] = ACTIONS(813), - [anon_sym_sealed] = ACTIONS(813), - [anon_sym_non_DASHsealed] = ACTIONS(811), - [anon_sym_record] = ACTIONS(813), - [anon_sym_ATinterface] = ACTIONS(811), - [anon_sym_interface] = ACTIONS(813), - [anon_sym_byte] = ACTIONS(813), - [anon_sym_short] = ACTIONS(813), - [anon_sym_int] = ACTIONS(813), - [anon_sym_long] = ACTIONS(813), - [anon_sym_char] = ACTIONS(813), - [anon_sym_float] = ACTIONS(813), - [anon_sym_double] = ACTIONS(813), - [sym_boolean_type] = ACTIONS(813), - [sym_void_type] = ACTIONS(813), - [sym_this] = ACTIONS(813), - [sym_super] = ACTIONS(813), + [STATE(291)] = { + [sym_switch_label] = STATE(1352), + [aux_sym_switch_block_statement_group_repeat1] = STATE(291), + [sym_identifier] = ACTIONS(1083), + [sym_decimal_integer_literal] = ACTIONS(1083), + [sym_hex_integer_literal] = ACTIONS(1083), + [sym_octal_integer_literal] = ACTIONS(1083), + [sym_binary_integer_literal] = ACTIONS(1085), + [sym_decimal_floating_point_literal] = ACTIONS(1085), + [sym_hex_floating_point_literal] = ACTIONS(1083), + [sym_true] = ACTIONS(1083), + [sym_false] = ACTIONS(1083), + [sym_character_literal] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_final] = ACTIONS(1083), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1083), + [anon_sym_class] = ACTIONS(1083), + [anon_sym_switch] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1087), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_assert] = ACTIONS(1083), + [anon_sym_do] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_break] = ACTIONS(1083), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1083), + [anon_sym_yield] = ACTIONS(1083), + [anon_sym_synchronized] = ACTIONS(1083), + [anon_sym_throw] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1083), + [anon_sym_if] = ACTIONS(1083), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_open] = ACTIONS(1083), + [anon_sym_module] = ACTIONS(1083), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_package] = ACTIONS(1083), + [anon_sym_import] = ACTIONS(1083), + [anon_sym_enum] = ACTIONS(1083), + [anon_sym_public] = ACTIONS(1083), + [anon_sym_protected] = ACTIONS(1083), + [anon_sym_private] = ACTIONS(1083), + [anon_sym_abstract] = ACTIONS(1083), + [anon_sym_strictfp] = ACTIONS(1083), + [anon_sym_native] = ACTIONS(1083), + [anon_sym_transient] = ACTIONS(1083), + [anon_sym_volatile] = ACTIONS(1083), + [anon_sym_sealed] = ACTIONS(1083), + [anon_sym_non_DASHsealed] = ACTIONS(1085), + [anon_sym_record] = ACTIONS(1083), + [anon_sym_ATinterface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1083), + [anon_sym_byte] = ACTIONS(1083), + [anon_sym_short] = ACTIONS(1083), + [anon_sym_int] = ACTIONS(1083), + [anon_sym_long] = ACTIONS(1083), + [anon_sym_char] = ACTIONS(1083), + [anon_sym_float] = ACTIONS(1083), + [anon_sym_double] = ACTIONS(1083), + [sym_boolean_type] = ACTIONS(1083), + [sym_void_type] = ACTIONS(1083), + [sym_this] = ACTIONS(1083), + [sym_super] = ACTIONS(1083), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(815), - [sym_identifier] = ACTIONS(817), - [sym_decimal_integer_literal] = ACTIONS(817), - [sym_hex_integer_literal] = ACTIONS(817), - [sym_octal_integer_literal] = ACTIONS(817), - [sym_binary_integer_literal] = ACTIONS(815), - [sym_decimal_floating_point_literal] = ACTIONS(815), - [sym_hex_floating_point_literal] = ACTIONS(817), - [sym_true] = ACTIONS(817), - [sym_false] = ACTIONS(817), - [sym_character_literal] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [sym_null_literal] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_LT] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_final] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_new] = ACTIONS(817), - [anon_sym_class] = ACTIONS(817), - [anon_sym_switch] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_case] = ACTIONS(817), - [anon_sym_default] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_assert] = ACTIONS(817), - [anon_sym_do] = ACTIONS(817), - [anon_sym_while] = ACTIONS(817), - [anon_sym_break] = ACTIONS(817), - [anon_sym_continue] = ACTIONS(817), - [anon_sym_return] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(817), - [anon_sym_synchronized] = ACTIONS(817), - [anon_sym_throw] = ACTIONS(817), - [anon_sym_try] = ACTIONS(817), - [anon_sym_if] = ACTIONS(817), - [anon_sym_else] = ACTIONS(817), - [anon_sym_for] = ACTIONS(817), - [anon_sym_AT] = ACTIONS(817), - [anon_sym_open] = ACTIONS(817), - [anon_sym_module] = ACTIONS(817), - [anon_sym_static] = ACTIONS(817), - [anon_sym_with] = ACTIONS(817), - [anon_sym_package] = ACTIONS(817), - [anon_sym_import] = ACTIONS(817), - [anon_sym_enum] = ACTIONS(817), - [anon_sym_public] = ACTIONS(817), - [anon_sym_protected] = ACTIONS(817), - [anon_sym_private] = ACTIONS(817), - [anon_sym_abstract] = ACTIONS(817), - [anon_sym_strictfp] = ACTIONS(817), - [anon_sym_native] = ACTIONS(817), - [anon_sym_transient] = ACTIONS(817), - [anon_sym_volatile] = ACTIONS(817), - [anon_sym_sealed] = ACTIONS(817), - [anon_sym_non_DASHsealed] = ACTIONS(815), - [anon_sym_record] = ACTIONS(817), - [anon_sym_ATinterface] = ACTIONS(815), - [anon_sym_interface] = ACTIONS(817), - [anon_sym_byte] = ACTIONS(817), - [anon_sym_short] = ACTIONS(817), - [anon_sym_int] = ACTIONS(817), - [anon_sym_long] = ACTIONS(817), - [anon_sym_char] = ACTIONS(817), - [anon_sym_float] = ACTIONS(817), - [anon_sym_double] = ACTIONS(817), - [sym_boolean_type] = ACTIONS(817), - [sym_void_type] = ACTIONS(817), - [sym_this] = ACTIONS(817), - [sym_super] = ACTIONS(817), + [STATE(292)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(658), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(819), - [sym_identifier] = ACTIONS(821), - [sym_decimal_integer_literal] = ACTIONS(821), - [sym_hex_integer_literal] = ACTIONS(821), - [sym_octal_integer_literal] = ACTIONS(821), - [sym_binary_integer_literal] = ACTIONS(819), - [sym_decimal_floating_point_literal] = ACTIONS(819), - [sym_hex_floating_point_literal] = ACTIONS(821), - [sym_true] = ACTIONS(821), - [sym_false] = ACTIONS(821), - [sym_character_literal] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [sym_null_literal] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_LT] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_final] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_new] = ACTIONS(821), - [anon_sym_class] = ACTIONS(821), - [anon_sym_switch] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(819), - [anon_sym_case] = ACTIONS(821), - [anon_sym_default] = ACTIONS(821), - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_assert] = ACTIONS(821), - [anon_sym_do] = ACTIONS(821), - [anon_sym_while] = ACTIONS(821), - [anon_sym_break] = ACTIONS(821), - [anon_sym_continue] = ACTIONS(821), - [anon_sym_return] = ACTIONS(821), - [anon_sym_yield] = ACTIONS(821), - [anon_sym_synchronized] = ACTIONS(821), - [anon_sym_throw] = ACTIONS(821), - [anon_sym_try] = ACTIONS(821), - [anon_sym_if] = ACTIONS(821), - [anon_sym_else] = ACTIONS(821), - [anon_sym_for] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_open] = ACTIONS(821), - [anon_sym_module] = ACTIONS(821), - [anon_sym_static] = ACTIONS(821), - [anon_sym_with] = ACTIONS(821), - [anon_sym_package] = ACTIONS(821), - [anon_sym_import] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(821), - [anon_sym_public] = ACTIONS(821), - [anon_sym_protected] = ACTIONS(821), - [anon_sym_private] = ACTIONS(821), - [anon_sym_abstract] = ACTIONS(821), - [anon_sym_strictfp] = ACTIONS(821), - [anon_sym_native] = ACTIONS(821), - [anon_sym_transient] = ACTIONS(821), - [anon_sym_volatile] = ACTIONS(821), - [anon_sym_sealed] = ACTIONS(821), - [anon_sym_non_DASHsealed] = ACTIONS(819), - [anon_sym_record] = ACTIONS(821), - [anon_sym_ATinterface] = ACTIONS(819), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_byte] = ACTIONS(821), - [anon_sym_short] = ACTIONS(821), - [anon_sym_int] = ACTIONS(821), - [anon_sym_long] = ACTIONS(821), - [anon_sym_char] = ACTIONS(821), - [anon_sym_float] = ACTIONS(821), - [anon_sym_double] = ACTIONS(821), - [sym_boolean_type] = ACTIONS(821), - [sym_void_type] = ACTIONS(821), - [sym_this] = ACTIONS(821), - [sym_super] = ACTIONS(821), + [STATE(293)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(659), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(823), - [sym_identifier] = ACTIONS(825), - [sym_decimal_integer_literal] = ACTIONS(825), - [sym_hex_integer_literal] = ACTIONS(825), - [sym_octal_integer_literal] = ACTIONS(825), - [sym_binary_integer_literal] = ACTIONS(823), - [sym_decimal_floating_point_literal] = ACTIONS(823), - [sym_hex_floating_point_literal] = ACTIONS(825), - [sym_true] = ACTIONS(825), - [sym_false] = ACTIONS(825), - [sym_character_literal] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(825), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(823), - [sym_null_literal] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(823), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_DASH] = ACTIONS(825), - [anon_sym_final] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_TILDE] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(823), - [anon_sym_DASH_DASH] = ACTIONS(823), - [anon_sym_new] = ACTIONS(825), - [anon_sym_class] = ACTIONS(825), - [anon_sym_switch] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_case] = ACTIONS(825), - [anon_sym_default] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(823), - [anon_sym_assert] = ACTIONS(825), - [anon_sym_do] = ACTIONS(825), - [anon_sym_while] = ACTIONS(825), - [anon_sym_break] = ACTIONS(825), - [anon_sym_continue] = ACTIONS(825), - [anon_sym_return] = ACTIONS(825), - [anon_sym_yield] = ACTIONS(825), - [anon_sym_synchronized] = ACTIONS(825), - [anon_sym_throw] = ACTIONS(825), - [anon_sym_try] = ACTIONS(825), - [anon_sym_if] = ACTIONS(825), - [anon_sym_else] = ACTIONS(825), - [anon_sym_for] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_open] = ACTIONS(825), - [anon_sym_module] = ACTIONS(825), - [anon_sym_static] = ACTIONS(825), - [anon_sym_with] = ACTIONS(825), - [anon_sym_package] = ACTIONS(825), - [anon_sym_import] = ACTIONS(825), - [anon_sym_enum] = ACTIONS(825), - [anon_sym_public] = ACTIONS(825), - [anon_sym_protected] = ACTIONS(825), - [anon_sym_private] = ACTIONS(825), - [anon_sym_abstract] = ACTIONS(825), - [anon_sym_strictfp] = ACTIONS(825), - [anon_sym_native] = ACTIONS(825), - [anon_sym_transient] = ACTIONS(825), - [anon_sym_volatile] = ACTIONS(825), - [anon_sym_sealed] = ACTIONS(825), - [anon_sym_non_DASHsealed] = ACTIONS(823), - [anon_sym_record] = ACTIONS(825), - [anon_sym_ATinterface] = ACTIONS(823), - [anon_sym_interface] = ACTIONS(825), - [anon_sym_byte] = ACTIONS(825), - [anon_sym_short] = ACTIONS(825), - [anon_sym_int] = ACTIONS(825), - [anon_sym_long] = ACTIONS(825), - [anon_sym_char] = ACTIONS(825), - [anon_sym_float] = ACTIONS(825), - [anon_sym_double] = ACTIONS(825), - [sym_boolean_type] = ACTIONS(825), - [sym_void_type] = ACTIONS(825), - [sym_this] = ACTIONS(825), - [sym_super] = ACTIONS(825), + [STATE(294)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(705), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1097), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(827), - [sym_identifier] = ACTIONS(829), - [sym_decimal_integer_literal] = ACTIONS(829), - [sym_hex_integer_literal] = ACTIONS(829), - [sym_octal_integer_literal] = ACTIONS(829), - [sym_binary_integer_literal] = ACTIONS(827), - [sym_decimal_floating_point_literal] = ACTIONS(827), - [sym_hex_floating_point_literal] = ACTIONS(829), - [sym_true] = ACTIONS(829), - [sym_false] = ACTIONS(829), - [sym_character_literal] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(827), - [anon_sym_RBRACE] = ACTIONS(827), - [sym_null_literal] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_final] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(827), - [anon_sym_PLUS_PLUS] = ACTIONS(827), - [anon_sym_DASH_DASH] = ACTIONS(827), - [anon_sym_new] = ACTIONS(829), - [anon_sym_class] = ACTIONS(829), - [anon_sym_switch] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_case] = ACTIONS(829), - [anon_sym_default] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(827), - [anon_sym_assert] = ACTIONS(829), - [anon_sym_do] = ACTIONS(829), - [anon_sym_while] = ACTIONS(829), - [anon_sym_break] = ACTIONS(829), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_return] = ACTIONS(829), - [anon_sym_yield] = ACTIONS(829), - [anon_sym_synchronized] = ACTIONS(829), - [anon_sym_throw] = ACTIONS(829), - [anon_sym_try] = ACTIONS(829), - [anon_sym_if] = ACTIONS(829), - [anon_sym_else] = ACTIONS(829), - [anon_sym_for] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(829), - [anon_sym_open] = ACTIONS(829), - [anon_sym_module] = ACTIONS(829), - [anon_sym_static] = ACTIONS(829), - [anon_sym_with] = ACTIONS(829), - [anon_sym_package] = ACTIONS(829), - [anon_sym_import] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(829), - [anon_sym_public] = ACTIONS(829), - [anon_sym_protected] = ACTIONS(829), - [anon_sym_private] = ACTIONS(829), - [anon_sym_abstract] = ACTIONS(829), - [anon_sym_strictfp] = ACTIONS(829), - [anon_sym_native] = ACTIONS(829), - [anon_sym_transient] = ACTIONS(829), - [anon_sym_volatile] = ACTIONS(829), - [anon_sym_sealed] = ACTIONS(829), - [anon_sym_non_DASHsealed] = ACTIONS(827), - [anon_sym_record] = ACTIONS(829), - [anon_sym_ATinterface] = ACTIONS(827), - [anon_sym_interface] = ACTIONS(829), - [anon_sym_byte] = ACTIONS(829), - [anon_sym_short] = ACTIONS(829), - [anon_sym_int] = ACTIONS(829), - [anon_sym_long] = ACTIONS(829), - [anon_sym_char] = ACTIONS(829), - [anon_sym_float] = ACTIONS(829), - [anon_sym_double] = ACTIONS(829), - [sym_boolean_type] = ACTIONS(829), - [sym_void_type] = ACTIONS(829), - [sym_this] = ACTIONS(829), - [sym_super] = ACTIONS(829), + [STATE(295)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(660), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(831), - [sym_identifier] = ACTIONS(833), - [sym_decimal_integer_literal] = ACTIONS(833), - [sym_hex_integer_literal] = ACTIONS(833), - [sym_octal_integer_literal] = ACTIONS(833), - [sym_binary_integer_literal] = ACTIONS(831), - [sym_decimal_floating_point_literal] = ACTIONS(831), - [sym_hex_floating_point_literal] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_character_literal] = ACTIONS(831), - [anon_sym_DQUOTE] = ACTIONS(833), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(831), - [anon_sym_RBRACE] = ACTIONS(831), - [sym_null_literal] = ACTIONS(833), - [anon_sym_LPAREN] = ACTIONS(831), - [anon_sym_LT] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(833), - [anon_sym_DASH] = ACTIONS(833), - [anon_sym_final] = ACTIONS(833), - [anon_sym_BANG] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(831), - [anon_sym_DASH_DASH] = ACTIONS(831), - [anon_sym_new] = ACTIONS(833), - [anon_sym_class] = ACTIONS(833), - [anon_sym_switch] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_case] = ACTIONS(833), - [anon_sym_default] = ACTIONS(833), - [anon_sym_SEMI] = ACTIONS(831), - [anon_sym_assert] = ACTIONS(833), - [anon_sym_do] = ACTIONS(833), - [anon_sym_while] = ACTIONS(833), - [anon_sym_break] = ACTIONS(833), - [anon_sym_continue] = ACTIONS(833), - [anon_sym_return] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_synchronized] = ACTIONS(833), - [anon_sym_throw] = ACTIONS(833), - [anon_sym_try] = ACTIONS(833), - [anon_sym_if] = ACTIONS(833), - [anon_sym_else] = ACTIONS(833), - [anon_sym_for] = ACTIONS(833), - [anon_sym_AT] = ACTIONS(833), - [anon_sym_open] = ACTIONS(833), - [anon_sym_module] = ACTIONS(833), - [anon_sym_static] = ACTIONS(833), - [anon_sym_with] = ACTIONS(833), - [anon_sym_package] = ACTIONS(833), - [anon_sym_import] = ACTIONS(833), - [anon_sym_enum] = ACTIONS(833), - [anon_sym_public] = ACTIONS(833), - [anon_sym_protected] = ACTIONS(833), - [anon_sym_private] = ACTIONS(833), - [anon_sym_abstract] = ACTIONS(833), - [anon_sym_strictfp] = ACTIONS(833), - [anon_sym_native] = ACTIONS(833), - [anon_sym_transient] = ACTIONS(833), - [anon_sym_volatile] = ACTIONS(833), - [anon_sym_sealed] = ACTIONS(833), - [anon_sym_non_DASHsealed] = ACTIONS(831), - [anon_sym_record] = ACTIONS(833), - [anon_sym_ATinterface] = ACTIONS(831), - [anon_sym_interface] = ACTIONS(833), - [anon_sym_byte] = ACTIONS(833), - [anon_sym_short] = ACTIONS(833), - [anon_sym_int] = ACTIONS(833), - [anon_sym_long] = ACTIONS(833), - [anon_sym_char] = ACTIONS(833), - [anon_sym_float] = ACTIONS(833), - [anon_sym_double] = ACTIONS(833), - [sym_boolean_type] = ACTIONS(833), - [sym_void_type] = ACTIONS(833), - [sym_this] = ACTIONS(833), - [sym_super] = ACTIONS(833), + [STATE(296)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(683), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(835), - [sym_identifier] = ACTIONS(837), - [sym_decimal_integer_literal] = ACTIONS(837), - [sym_hex_integer_literal] = ACTIONS(837), - [sym_octal_integer_literal] = ACTIONS(837), - [sym_binary_integer_literal] = ACTIONS(835), - [sym_decimal_floating_point_literal] = ACTIONS(835), - [sym_hex_floating_point_literal] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_character_literal] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(837), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [sym_null_literal] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(837), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_final] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_new] = ACTIONS(837), - [anon_sym_class] = ACTIONS(837), - [anon_sym_switch] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_case] = ACTIONS(837), - [anon_sym_default] = ACTIONS(837), - [anon_sym_SEMI] = ACTIONS(835), - [anon_sym_assert] = ACTIONS(837), - [anon_sym_do] = ACTIONS(837), - [anon_sym_while] = ACTIONS(837), - [anon_sym_break] = ACTIONS(837), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_return] = ACTIONS(837), - [anon_sym_yield] = ACTIONS(837), - [anon_sym_synchronized] = ACTIONS(837), - [anon_sym_throw] = ACTIONS(837), - [anon_sym_try] = ACTIONS(837), - [anon_sym_if] = ACTIONS(837), - [anon_sym_else] = ACTIONS(837), - [anon_sym_for] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(837), - [anon_sym_open] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_static] = ACTIONS(837), - [anon_sym_with] = ACTIONS(837), - [anon_sym_package] = ACTIONS(837), - [anon_sym_import] = ACTIONS(837), - [anon_sym_enum] = ACTIONS(837), - [anon_sym_public] = ACTIONS(837), - [anon_sym_protected] = ACTIONS(837), - [anon_sym_private] = ACTIONS(837), - [anon_sym_abstract] = ACTIONS(837), - [anon_sym_strictfp] = ACTIONS(837), - [anon_sym_native] = ACTIONS(837), - [anon_sym_transient] = ACTIONS(837), - [anon_sym_volatile] = ACTIONS(837), - [anon_sym_sealed] = ACTIONS(837), - [anon_sym_non_DASHsealed] = ACTIONS(835), - [anon_sym_record] = ACTIONS(837), - [anon_sym_ATinterface] = ACTIONS(835), - [anon_sym_interface] = ACTIONS(837), - [anon_sym_byte] = ACTIONS(837), - [anon_sym_short] = ACTIONS(837), - [anon_sym_int] = ACTIONS(837), - [anon_sym_long] = ACTIONS(837), - [anon_sym_char] = ACTIONS(837), - [anon_sym_float] = ACTIONS(837), - [anon_sym_double] = ACTIONS(837), - [sym_boolean_type] = ACTIONS(837), - [sym_void_type] = ACTIONS(837), - [sym_this] = ACTIONS(837), - [sym_super] = ACTIONS(837), + [STATE(297)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(649), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1103), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(839), - [sym_identifier] = ACTIONS(841), - [sym_decimal_integer_literal] = ACTIONS(841), - [sym_hex_integer_literal] = ACTIONS(841), - [sym_octal_integer_literal] = ACTIONS(841), - [sym_binary_integer_literal] = ACTIONS(839), - [sym_decimal_floating_point_literal] = ACTIONS(839), - [sym_hex_floating_point_literal] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_character_literal] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(841), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(839), - [anon_sym_RBRACE] = ACTIONS(839), - [sym_null_literal] = ACTIONS(841), - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(839), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_final] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(839), - [anon_sym_TILDE] = ACTIONS(839), - [anon_sym_PLUS_PLUS] = ACTIONS(839), - [anon_sym_DASH_DASH] = ACTIONS(839), - [anon_sym_new] = ACTIONS(841), - [anon_sym_class] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(839), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_assert] = ACTIONS(841), - [anon_sym_do] = ACTIONS(841), - [anon_sym_while] = ACTIONS(841), - [anon_sym_break] = ACTIONS(841), - [anon_sym_continue] = ACTIONS(841), - [anon_sym_return] = ACTIONS(841), - [anon_sym_yield] = ACTIONS(841), - [anon_sym_synchronized] = ACTIONS(841), - [anon_sym_throw] = ACTIONS(841), - [anon_sym_try] = ACTIONS(841), - [anon_sym_if] = ACTIONS(841), - [anon_sym_else] = ACTIONS(841), - [anon_sym_for] = ACTIONS(841), - [anon_sym_AT] = ACTIONS(841), - [anon_sym_open] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_static] = ACTIONS(841), - [anon_sym_with] = ACTIONS(841), - [anon_sym_package] = ACTIONS(841), - [anon_sym_import] = ACTIONS(841), - [anon_sym_enum] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_abstract] = ACTIONS(841), - [anon_sym_strictfp] = ACTIONS(841), - [anon_sym_native] = ACTIONS(841), - [anon_sym_transient] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym_sealed] = ACTIONS(841), - [anon_sym_non_DASHsealed] = ACTIONS(839), - [anon_sym_record] = ACTIONS(841), - [anon_sym_ATinterface] = ACTIONS(839), - [anon_sym_interface] = ACTIONS(841), - [anon_sym_byte] = ACTIONS(841), - [anon_sym_short] = ACTIONS(841), - [anon_sym_int] = ACTIONS(841), - [anon_sym_long] = ACTIONS(841), - [anon_sym_char] = ACTIONS(841), - [anon_sym_float] = ACTIONS(841), - [anon_sym_double] = ACTIONS(841), - [sym_boolean_type] = ACTIONS(841), - [sym_void_type] = ACTIONS(841), - [sym_this] = ACTIONS(841), - [sym_super] = ACTIONS(841), + [STATE(298)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(689), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(843), - [sym_identifier] = ACTIONS(845), - [sym_decimal_integer_literal] = ACTIONS(845), - [sym_hex_integer_literal] = ACTIONS(845), - [sym_octal_integer_literal] = ACTIONS(845), - [sym_binary_integer_literal] = ACTIONS(843), - [sym_decimal_floating_point_literal] = ACTIONS(843), - [sym_hex_floating_point_literal] = ACTIONS(845), - [sym_true] = ACTIONS(845), - [sym_false] = ACTIONS(845), - [sym_character_literal] = ACTIONS(843), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(843), - [anon_sym_RBRACE] = ACTIONS(843), - [sym_null_literal] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(843), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_final] = ACTIONS(845), - [anon_sym_BANG] = ACTIONS(843), - [anon_sym_TILDE] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(843), - [anon_sym_DASH_DASH] = ACTIONS(843), - [anon_sym_new] = ACTIONS(845), - [anon_sym_class] = ACTIONS(845), - [anon_sym_switch] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(843), - [anon_sym_case] = ACTIONS(845), - [anon_sym_default] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(843), - [anon_sym_assert] = ACTIONS(845), - [anon_sym_do] = ACTIONS(845), - [anon_sym_while] = ACTIONS(845), - [anon_sym_break] = ACTIONS(845), - [anon_sym_continue] = ACTIONS(845), - [anon_sym_return] = ACTIONS(845), - [anon_sym_yield] = ACTIONS(845), - [anon_sym_synchronized] = ACTIONS(845), - [anon_sym_throw] = ACTIONS(845), - [anon_sym_try] = ACTIONS(845), - [anon_sym_if] = ACTIONS(845), - [anon_sym_else] = ACTIONS(845), - [anon_sym_for] = ACTIONS(845), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_open] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_static] = ACTIONS(845), - [anon_sym_with] = ACTIONS(845), - [anon_sym_package] = ACTIONS(845), - [anon_sym_import] = ACTIONS(845), - [anon_sym_enum] = ACTIONS(845), - [anon_sym_public] = ACTIONS(845), - [anon_sym_protected] = ACTIONS(845), - [anon_sym_private] = ACTIONS(845), - [anon_sym_abstract] = ACTIONS(845), - [anon_sym_strictfp] = ACTIONS(845), - [anon_sym_native] = ACTIONS(845), - [anon_sym_transient] = ACTIONS(845), - [anon_sym_volatile] = ACTIONS(845), - [anon_sym_sealed] = ACTIONS(845), - [anon_sym_non_DASHsealed] = ACTIONS(843), - [anon_sym_record] = ACTIONS(845), - [anon_sym_ATinterface] = ACTIONS(843), - [anon_sym_interface] = ACTIONS(845), - [anon_sym_byte] = ACTIONS(845), - [anon_sym_short] = ACTIONS(845), - [anon_sym_int] = ACTIONS(845), - [anon_sym_long] = ACTIONS(845), - [anon_sym_char] = ACTIONS(845), - [anon_sym_float] = ACTIONS(845), - [anon_sym_double] = ACTIONS(845), - [sym_boolean_type] = ACTIONS(845), - [sym_void_type] = ACTIONS(845), - [sym_this] = ACTIONS(845), - [sym_super] = ACTIONS(845), + [STATE(299)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(687), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(847), - [sym_identifier] = ACTIONS(849), - [sym_decimal_integer_literal] = ACTIONS(849), - [sym_hex_integer_literal] = ACTIONS(849), - [sym_octal_integer_literal] = ACTIONS(849), - [sym_binary_integer_literal] = ACTIONS(847), - [sym_decimal_floating_point_literal] = ACTIONS(847), - [sym_hex_floating_point_literal] = ACTIONS(849), - [sym_true] = ACTIONS(849), - [sym_false] = ACTIONS(849), - [sym_character_literal] = ACTIONS(847), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(847), - [anon_sym_RBRACE] = ACTIONS(847), - [sym_null_literal] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_final] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_TILDE] = ACTIONS(847), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_new] = ACTIONS(849), - [anon_sym_class] = ACTIONS(849), - [anon_sym_switch] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(847), - [anon_sym_case] = ACTIONS(849), - [anon_sym_default] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_assert] = ACTIONS(849), - [anon_sym_do] = ACTIONS(849), - [anon_sym_while] = ACTIONS(849), - [anon_sym_break] = ACTIONS(849), - [anon_sym_continue] = ACTIONS(849), - [anon_sym_return] = ACTIONS(849), - [anon_sym_yield] = ACTIONS(849), - [anon_sym_synchronized] = ACTIONS(849), - [anon_sym_throw] = ACTIONS(849), - [anon_sym_try] = ACTIONS(849), - [anon_sym_if] = ACTIONS(849), - [anon_sym_else] = ACTIONS(849), - [anon_sym_for] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(849), - [anon_sym_open] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_static] = ACTIONS(849), - [anon_sym_with] = ACTIONS(849), - [anon_sym_package] = ACTIONS(849), - [anon_sym_import] = ACTIONS(849), - [anon_sym_enum] = ACTIONS(849), - [anon_sym_public] = ACTIONS(849), - [anon_sym_protected] = ACTIONS(849), - [anon_sym_private] = ACTIONS(849), - [anon_sym_abstract] = ACTIONS(849), - [anon_sym_strictfp] = ACTIONS(849), - [anon_sym_native] = ACTIONS(849), - [anon_sym_transient] = ACTIONS(849), - [anon_sym_volatile] = ACTIONS(849), - [anon_sym_sealed] = ACTIONS(849), - [anon_sym_non_DASHsealed] = ACTIONS(847), - [anon_sym_record] = ACTIONS(849), - [anon_sym_ATinterface] = ACTIONS(847), - [anon_sym_interface] = ACTIONS(849), - [anon_sym_byte] = ACTIONS(849), - [anon_sym_short] = ACTIONS(849), - [anon_sym_int] = ACTIONS(849), - [anon_sym_long] = ACTIONS(849), - [anon_sym_char] = ACTIONS(849), - [anon_sym_float] = ACTIONS(849), - [anon_sym_double] = ACTIONS(849), - [sym_boolean_type] = ACTIONS(849), - [sym_void_type] = ACTIONS(849), - [sym_this] = ACTIONS(849), - [sym_super] = ACTIONS(849), + [STATE(300)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(638), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1109), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [302] = { - [ts_builtin_sym_end] = ACTIONS(851), - [sym_identifier] = ACTIONS(853), - [sym_decimal_integer_literal] = ACTIONS(853), - [sym_hex_integer_literal] = ACTIONS(853), - [sym_octal_integer_literal] = ACTIONS(853), - [sym_binary_integer_literal] = ACTIONS(851), - [sym_decimal_floating_point_literal] = ACTIONS(851), - [sym_hex_floating_point_literal] = ACTIONS(853), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [sym_character_literal] = ACTIONS(851), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [sym_null_literal] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_final] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_DASH_DASH] = ACTIONS(851), - [anon_sym_new] = ACTIONS(853), - [anon_sym_class] = ACTIONS(853), - [anon_sym_switch] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(851), - [anon_sym_case] = ACTIONS(853), - [anon_sym_default] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_assert] = ACTIONS(853), - [anon_sym_do] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_return] = ACTIONS(853), - [anon_sym_yield] = ACTIONS(853), - [anon_sym_synchronized] = ACTIONS(853), - [anon_sym_throw] = ACTIONS(853), - [anon_sym_try] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_else] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_AT] = ACTIONS(853), - [anon_sym_open] = ACTIONS(853), - [anon_sym_module] = ACTIONS(853), - [anon_sym_static] = ACTIONS(853), - [anon_sym_with] = ACTIONS(853), - [anon_sym_package] = ACTIONS(853), - [anon_sym_import] = ACTIONS(853), - [anon_sym_enum] = ACTIONS(853), - [anon_sym_public] = ACTIONS(853), - [anon_sym_protected] = ACTIONS(853), - [anon_sym_private] = ACTIONS(853), - [anon_sym_abstract] = ACTIONS(853), - [anon_sym_strictfp] = ACTIONS(853), - [anon_sym_native] = ACTIONS(853), - [anon_sym_transient] = ACTIONS(853), - [anon_sym_volatile] = ACTIONS(853), - [anon_sym_sealed] = ACTIONS(853), - [anon_sym_non_DASHsealed] = ACTIONS(851), - [anon_sym_record] = ACTIONS(853), - [anon_sym_ATinterface] = ACTIONS(851), - [anon_sym_interface] = ACTIONS(853), - [anon_sym_byte] = ACTIONS(853), - [anon_sym_short] = ACTIONS(853), - [anon_sym_int] = ACTIONS(853), - [anon_sym_long] = ACTIONS(853), - [anon_sym_char] = ACTIONS(853), - [anon_sym_float] = ACTIONS(853), - [anon_sym_double] = ACTIONS(853), - [sym_boolean_type] = ACTIONS(853), - [sym_void_type] = ACTIONS(853), - [sym_this] = ACTIONS(853), - [sym_super] = ACTIONS(853), + [STATE(301)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(640), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(857), - [sym_decimal_integer_literal] = ACTIONS(857), - [sym_hex_integer_literal] = ACTIONS(857), - [sym_octal_integer_literal] = ACTIONS(857), - [sym_binary_integer_literal] = ACTIONS(855), - [sym_decimal_floating_point_literal] = ACTIONS(855), - [sym_hex_floating_point_literal] = ACTIONS(857), - [sym_true] = ACTIONS(857), - [sym_false] = ACTIONS(857), - [sym_character_literal] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [sym_null_literal] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_final] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(855), - [anon_sym_TILDE] = ACTIONS(855), - [anon_sym_PLUS_PLUS] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(855), - [anon_sym_new] = ACTIONS(857), - [anon_sym_class] = ACTIONS(857), - [anon_sym_switch] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_case] = ACTIONS(857), - [anon_sym_default] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_assert] = ACTIONS(857), - [anon_sym_do] = ACTIONS(857), - [anon_sym_while] = ACTIONS(857), - [anon_sym_break] = ACTIONS(857), - [anon_sym_continue] = ACTIONS(857), - [anon_sym_return] = ACTIONS(857), - [anon_sym_yield] = ACTIONS(857), - [anon_sym_synchronized] = ACTIONS(857), - [anon_sym_throw] = ACTIONS(857), - [anon_sym_try] = ACTIONS(857), - [anon_sym_if] = ACTIONS(857), - [anon_sym_else] = ACTIONS(857), - [anon_sym_for] = ACTIONS(857), - [anon_sym_AT] = ACTIONS(857), - [anon_sym_open] = ACTIONS(857), - [anon_sym_module] = ACTIONS(857), - [anon_sym_static] = ACTIONS(857), - [anon_sym_with] = ACTIONS(857), - [anon_sym_package] = ACTIONS(857), - [anon_sym_import] = ACTIONS(857), - [anon_sym_enum] = ACTIONS(857), - [anon_sym_public] = ACTIONS(857), - [anon_sym_protected] = ACTIONS(857), - [anon_sym_private] = ACTIONS(857), - [anon_sym_abstract] = ACTIONS(857), - [anon_sym_strictfp] = ACTIONS(857), - [anon_sym_native] = ACTIONS(857), - [anon_sym_transient] = ACTIONS(857), - [anon_sym_volatile] = ACTIONS(857), - [anon_sym_sealed] = ACTIONS(857), - [anon_sym_non_DASHsealed] = ACTIONS(855), - [anon_sym_record] = ACTIONS(857), - [anon_sym_ATinterface] = ACTIONS(855), - [anon_sym_interface] = ACTIONS(857), - [anon_sym_byte] = ACTIONS(857), - [anon_sym_short] = ACTIONS(857), - [anon_sym_int] = ACTIONS(857), - [anon_sym_long] = ACTIONS(857), - [anon_sym_char] = ACTIONS(857), - [anon_sym_float] = ACTIONS(857), - [anon_sym_double] = ACTIONS(857), - [sym_boolean_type] = ACTIONS(857), - [sym_void_type] = ACTIONS(857), - [sym_this] = ACTIONS(857), - [sym_super] = ACTIONS(857), + [STATE(302)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(641), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(859), - [sym_identifier] = ACTIONS(861), - [sym_decimal_integer_literal] = ACTIONS(861), - [sym_hex_integer_literal] = ACTIONS(861), - [sym_octal_integer_literal] = ACTIONS(861), - [sym_binary_integer_literal] = ACTIONS(859), - [sym_decimal_floating_point_literal] = ACTIONS(859), - [sym_hex_floating_point_literal] = ACTIONS(861), - [sym_true] = ACTIONS(861), - [sym_false] = ACTIONS(861), - [sym_character_literal] = ACTIONS(859), - [anon_sym_DQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(859), - [anon_sym_RBRACE] = ACTIONS(859), - [sym_null_literal] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(859), - [anon_sym_LT] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_final] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(859), - [anon_sym_TILDE] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(859), - [anon_sym_DASH_DASH] = ACTIONS(859), - [anon_sym_new] = ACTIONS(861), - [anon_sym_class] = ACTIONS(861), - [anon_sym_switch] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_case] = ACTIONS(861), - [anon_sym_default] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(859), - [anon_sym_assert] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_yield] = ACTIONS(861), - [anon_sym_synchronized] = ACTIONS(861), - [anon_sym_throw] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_open] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_static] = ACTIONS(861), - [anon_sym_with] = ACTIONS(861), - [anon_sym_package] = ACTIONS(861), - [anon_sym_import] = ACTIONS(861), - [anon_sym_enum] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_protected] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_abstract] = ACTIONS(861), - [anon_sym_strictfp] = ACTIONS(861), - [anon_sym_native] = ACTIONS(861), - [anon_sym_transient] = ACTIONS(861), - [anon_sym_volatile] = ACTIONS(861), - [anon_sym_sealed] = ACTIONS(861), - [anon_sym_non_DASHsealed] = ACTIONS(859), - [anon_sym_record] = ACTIONS(861), - [anon_sym_ATinterface] = ACTIONS(859), - [anon_sym_interface] = ACTIONS(861), - [anon_sym_byte] = ACTIONS(861), - [anon_sym_short] = ACTIONS(861), - [anon_sym_int] = ACTIONS(861), - [anon_sym_long] = ACTIONS(861), - [anon_sym_char] = ACTIONS(861), - [anon_sym_float] = ACTIONS(861), - [anon_sym_double] = ACTIONS(861), - [sym_boolean_type] = ACTIONS(861), - [sym_void_type] = ACTIONS(861), - [sym_this] = ACTIONS(861), - [sym_super] = ACTIONS(861), + [STATE(303)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(642), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1115), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(863), - [sym_identifier] = ACTIONS(865), - [sym_decimal_integer_literal] = ACTIONS(865), - [sym_hex_integer_literal] = ACTIONS(865), - [sym_octal_integer_literal] = ACTIONS(865), - [sym_binary_integer_literal] = ACTIONS(863), - [sym_decimal_floating_point_literal] = ACTIONS(863), - [sym_hex_floating_point_literal] = ACTIONS(865), - [sym_true] = ACTIONS(865), - [sym_false] = ACTIONS(865), - [sym_character_literal] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(863), - [anon_sym_RBRACE] = ACTIONS(863), - [sym_null_literal] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_final] = ACTIONS(865), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(863), - [anon_sym_DASH_DASH] = ACTIONS(863), - [anon_sym_new] = ACTIONS(865), - [anon_sym_class] = ACTIONS(865), - [anon_sym_switch] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_case] = ACTIONS(865), - [anon_sym_default] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_assert] = ACTIONS(865), - [anon_sym_do] = ACTIONS(865), - [anon_sym_while] = ACTIONS(865), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(865), - [anon_sym_return] = ACTIONS(865), - [anon_sym_yield] = ACTIONS(865), - [anon_sym_synchronized] = ACTIONS(865), - [anon_sym_throw] = ACTIONS(865), - [anon_sym_try] = ACTIONS(865), - [anon_sym_if] = ACTIONS(865), - [anon_sym_else] = ACTIONS(865), - [anon_sym_for] = ACTIONS(865), - [anon_sym_AT] = ACTIONS(865), - [anon_sym_open] = ACTIONS(865), - [anon_sym_module] = ACTIONS(865), - [anon_sym_static] = ACTIONS(865), - [anon_sym_with] = ACTIONS(865), - [anon_sym_package] = ACTIONS(865), - [anon_sym_import] = ACTIONS(865), - [anon_sym_enum] = ACTIONS(865), - [anon_sym_public] = ACTIONS(865), - [anon_sym_protected] = ACTIONS(865), - [anon_sym_private] = ACTIONS(865), - [anon_sym_abstract] = ACTIONS(865), - [anon_sym_strictfp] = ACTIONS(865), - [anon_sym_native] = ACTIONS(865), - [anon_sym_transient] = ACTIONS(865), - [anon_sym_volatile] = ACTIONS(865), - [anon_sym_sealed] = ACTIONS(865), - [anon_sym_non_DASHsealed] = ACTIONS(863), - [anon_sym_record] = ACTIONS(865), - [anon_sym_ATinterface] = ACTIONS(863), - [anon_sym_interface] = ACTIONS(865), - [anon_sym_byte] = ACTIONS(865), - [anon_sym_short] = ACTIONS(865), - [anon_sym_int] = ACTIONS(865), - [anon_sym_long] = ACTIONS(865), - [anon_sym_char] = ACTIONS(865), - [anon_sym_float] = ACTIONS(865), - [anon_sym_double] = ACTIONS(865), - [sym_boolean_type] = ACTIONS(865), - [sym_void_type] = ACTIONS(865), - [sym_this] = ACTIONS(865), - [sym_super] = ACTIONS(865), + [STATE(304)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(643), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(867), - [sym_identifier] = ACTIONS(869), - [sym_decimal_integer_literal] = ACTIONS(869), - [sym_hex_integer_literal] = ACTIONS(869), - [sym_octal_integer_literal] = ACTIONS(869), - [sym_binary_integer_literal] = ACTIONS(867), - [sym_decimal_floating_point_literal] = ACTIONS(867), - [sym_hex_floating_point_literal] = ACTIONS(869), - [sym_true] = ACTIONS(869), - [sym_false] = ACTIONS(869), - [sym_character_literal] = ACTIONS(867), - [anon_sym_DQUOTE] = ACTIONS(869), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(867), - [anon_sym_RBRACE] = ACTIONS(867), - [sym_null_literal] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(867), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_final] = ACTIONS(869), - [anon_sym_BANG] = ACTIONS(867), - [anon_sym_TILDE] = ACTIONS(867), - [anon_sym_PLUS_PLUS] = ACTIONS(867), - [anon_sym_DASH_DASH] = ACTIONS(867), - [anon_sym_new] = ACTIONS(869), - [anon_sym_class] = ACTIONS(869), - [anon_sym_switch] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(867), - [anon_sym_case] = ACTIONS(869), - [anon_sym_default] = ACTIONS(869), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_assert] = ACTIONS(869), - [anon_sym_do] = ACTIONS(869), - [anon_sym_while] = ACTIONS(869), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(869), - [anon_sym_return] = ACTIONS(869), - [anon_sym_yield] = ACTIONS(869), - [anon_sym_synchronized] = ACTIONS(869), - [anon_sym_throw] = ACTIONS(869), - [anon_sym_try] = ACTIONS(869), - [anon_sym_if] = ACTIONS(869), - [anon_sym_else] = ACTIONS(869), - [anon_sym_for] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(869), - [anon_sym_open] = ACTIONS(869), - [anon_sym_module] = ACTIONS(869), - [anon_sym_static] = ACTIONS(869), - [anon_sym_with] = ACTIONS(869), - [anon_sym_package] = ACTIONS(869), - [anon_sym_import] = ACTIONS(869), - [anon_sym_enum] = ACTIONS(869), - [anon_sym_public] = ACTIONS(869), - [anon_sym_protected] = ACTIONS(869), - [anon_sym_private] = ACTIONS(869), - [anon_sym_abstract] = ACTIONS(869), - [anon_sym_strictfp] = ACTIONS(869), - [anon_sym_native] = ACTIONS(869), - [anon_sym_transient] = ACTIONS(869), - [anon_sym_volatile] = ACTIONS(869), - [anon_sym_sealed] = ACTIONS(869), - [anon_sym_non_DASHsealed] = ACTIONS(867), - [anon_sym_record] = ACTIONS(869), - [anon_sym_ATinterface] = ACTIONS(867), - [anon_sym_interface] = ACTIONS(869), - [anon_sym_byte] = ACTIONS(869), - [anon_sym_short] = ACTIONS(869), - [anon_sym_int] = ACTIONS(869), - [anon_sym_long] = ACTIONS(869), - [anon_sym_char] = ACTIONS(869), - [anon_sym_float] = ACTIONS(869), - [anon_sym_double] = ACTIONS(869), - [sym_boolean_type] = ACTIONS(869), - [sym_void_type] = ACTIONS(869), - [sym_this] = ACTIONS(869), - [sym_super] = ACTIONS(869), + [STATE(305)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(644), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(871), - [sym_identifier] = ACTIONS(873), - [sym_decimal_integer_literal] = ACTIONS(873), - [sym_hex_integer_literal] = ACTIONS(873), - [sym_octal_integer_literal] = ACTIONS(873), - [sym_binary_integer_literal] = ACTIONS(871), - [sym_decimal_floating_point_literal] = ACTIONS(871), - [sym_hex_floating_point_literal] = ACTIONS(873), - [sym_true] = ACTIONS(873), - [sym_false] = ACTIONS(873), - [sym_character_literal] = ACTIONS(871), - [anon_sym_DQUOTE] = ACTIONS(873), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(871), - [anon_sym_RBRACE] = ACTIONS(871), - [sym_null_literal] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(871), - [anon_sym_LT] = ACTIONS(871), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_final] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(871), - [anon_sym_PLUS_PLUS] = ACTIONS(871), - [anon_sym_DASH_DASH] = ACTIONS(871), - [anon_sym_new] = ACTIONS(873), - [anon_sym_class] = ACTIONS(873), - [anon_sym_switch] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(871), - [anon_sym_case] = ACTIONS(873), - [anon_sym_default] = ACTIONS(873), - [anon_sym_SEMI] = ACTIONS(871), - [anon_sym_assert] = ACTIONS(873), - [anon_sym_do] = ACTIONS(873), - [anon_sym_while] = ACTIONS(873), - [anon_sym_break] = ACTIONS(873), - [anon_sym_continue] = ACTIONS(873), - [anon_sym_return] = ACTIONS(873), - [anon_sym_yield] = ACTIONS(873), - [anon_sym_synchronized] = ACTIONS(873), - [anon_sym_throw] = ACTIONS(873), - [anon_sym_try] = ACTIONS(873), - [anon_sym_if] = ACTIONS(873), - [anon_sym_else] = ACTIONS(873), - [anon_sym_for] = ACTIONS(873), - [anon_sym_AT] = ACTIONS(873), - [anon_sym_open] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_static] = ACTIONS(873), - [anon_sym_with] = ACTIONS(873), - [anon_sym_package] = ACTIONS(873), - [anon_sym_import] = ACTIONS(873), - [anon_sym_enum] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_abstract] = ACTIONS(873), - [anon_sym_strictfp] = ACTIONS(873), - [anon_sym_native] = ACTIONS(873), - [anon_sym_transient] = ACTIONS(873), - [anon_sym_volatile] = ACTIONS(873), - [anon_sym_sealed] = ACTIONS(873), - [anon_sym_non_DASHsealed] = ACTIONS(871), - [anon_sym_record] = ACTIONS(873), - [anon_sym_ATinterface] = ACTIONS(871), - [anon_sym_interface] = ACTIONS(873), - [anon_sym_byte] = ACTIONS(873), - [anon_sym_short] = ACTIONS(873), - [anon_sym_int] = ACTIONS(873), - [anon_sym_long] = ACTIONS(873), - [anon_sym_char] = ACTIONS(873), - [anon_sym_float] = ACTIONS(873), - [anon_sym_double] = ACTIONS(873), - [sym_boolean_type] = ACTIONS(873), - [sym_void_type] = ACTIONS(873), - [sym_this] = ACTIONS(873), - [sym_super] = ACTIONS(873), + [STATE(306)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(645), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(875), - [sym_identifier] = ACTIONS(877), - [sym_decimal_integer_literal] = ACTIONS(877), - [sym_hex_integer_literal] = ACTIONS(877), - [sym_octal_integer_literal] = ACTIONS(877), - [sym_binary_integer_literal] = ACTIONS(875), - [sym_decimal_floating_point_literal] = ACTIONS(875), - [sym_hex_floating_point_literal] = ACTIONS(877), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_character_literal] = ACTIONS(875), - [anon_sym_DQUOTE] = ACTIONS(877), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(875), - [anon_sym_RBRACE] = ACTIONS(875), - [sym_null_literal] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(875), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_final] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(875), - [anon_sym_TILDE] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_DASH_DASH] = ACTIONS(875), - [anon_sym_new] = ACTIONS(877), - [anon_sym_class] = ACTIONS(877), - [anon_sym_switch] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(875), - [anon_sym_case] = ACTIONS(877), - [anon_sym_default] = ACTIONS(877), - [anon_sym_SEMI] = ACTIONS(875), - [anon_sym_assert] = ACTIONS(877), - [anon_sym_do] = ACTIONS(877), - [anon_sym_while] = ACTIONS(877), - [anon_sym_break] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(877), - [anon_sym_return] = ACTIONS(877), - [anon_sym_yield] = ACTIONS(877), - [anon_sym_synchronized] = ACTIONS(877), - [anon_sym_throw] = ACTIONS(877), - [anon_sym_try] = ACTIONS(877), - [anon_sym_if] = ACTIONS(877), - [anon_sym_else] = ACTIONS(877), - [anon_sym_for] = ACTIONS(877), - [anon_sym_AT] = ACTIONS(877), - [anon_sym_open] = ACTIONS(877), - [anon_sym_module] = ACTIONS(877), - [anon_sym_static] = ACTIONS(877), - [anon_sym_with] = ACTIONS(877), - [anon_sym_package] = ACTIONS(877), - [anon_sym_import] = ACTIONS(877), - [anon_sym_enum] = ACTIONS(877), - [anon_sym_public] = ACTIONS(877), - [anon_sym_protected] = ACTIONS(877), - [anon_sym_private] = ACTIONS(877), - [anon_sym_abstract] = ACTIONS(877), - [anon_sym_strictfp] = ACTIONS(877), - [anon_sym_native] = ACTIONS(877), - [anon_sym_transient] = ACTIONS(877), - [anon_sym_volatile] = ACTIONS(877), - [anon_sym_sealed] = ACTIONS(877), - [anon_sym_non_DASHsealed] = ACTIONS(875), - [anon_sym_record] = ACTIONS(877), - [anon_sym_ATinterface] = ACTIONS(875), - [anon_sym_interface] = ACTIONS(877), - [anon_sym_byte] = ACTIONS(877), - [anon_sym_short] = ACTIONS(877), - [anon_sym_int] = ACTIONS(877), - [anon_sym_long] = ACTIONS(877), - [anon_sym_char] = ACTIONS(877), - [anon_sym_float] = ACTIONS(877), - [anon_sym_double] = ACTIONS(877), - [sym_boolean_type] = ACTIONS(877), - [sym_void_type] = ACTIONS(877), - [sym_this] = ACTIONS(877), - [sym_super] = ACTIONS(877), + [STATE(307)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(623), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(879), - [sym_identifier] = ACTIONS(881), - [sym_decimal_integer_literal] = ACTIONS(881), - [sym_hex_integer_literal] = ACTIONS(881), - [sym_octal_integer_literal] = ACTIONS(881), - [sym_binary_integer_literal] = ACTIONS(879), - [sym_decimal_floating_point_literal] = ACTIONS(879), - [sym_hex_floating_point_literal] = ACTIONS(881), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_character_literal] = ACTIONS(879), - [anon_sym_DQUOTE] = ACTIONS(881), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(879), - [anon_sym_RBRACE] = ACTIONS(879), - [sym_null_literal] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(881), - [anon_sym_DASH] = ACTIONS(881), - [anon_sym_final] = ACTIONS(881), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_TILDE] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_new] = ACTIONS(881), - [anon_sym_class] = ACTIONS(881), - [anon_sym_switch] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_case] = ACTIONS(881), - [anon_sym_default] = ACTIONS(881), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_assert] = ACTIONS(881), - [anon_sym_do] = ACTIONS(881), - [anon_sym_while] = ACTIONS(881), - [anon_sym_break] = ACTIONS(881), - [anon_sym_continue] = ACTIONS(881), - [anon_sym_return] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(881), - [anon_sym_synchronized] = ACTIONS(881), - [anon_sym_throw] = ACTIONS(881), - [anon_sym_try] = ACTIONS(881), - [anon_sym_if] = ACTIONS(881), - [anon_sym_else] = ACTIONS(881), - [anon_sym_for] = ACTIONS(881), - [anon_sym_AT] = ACTIONS(881), - [anon_sym_open] = ACTIONS(881), - [anon_sym_module] = ACTIONS(881), - [anon_sym_static] = ACTIONS(881), - [anon_sym_with] = ACTIONS(881), - [anon_sym_package] = ACTIONS(881), - [anon_sym_import] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(881), - [anon_sym_public] = ACTIONS(881), - [anon_sym_protected] = ACTIONS(881), - [anon_sym_private] = ACTIONS(881), - [anon_sym_abstract] = ACTIONS(881), - [anon_sym_strictfp] = ACTIONS(881), - [anon_sym_native] = ACTIONS(881), - [anon_sym_transient] = ACTIONS(881), - [anon_sym_volatile] = ACTIONS(881), - [anon_sym_sealed] = ACTIONS(881), - [anon_sym_non_DASHsealed] = ACTIONS(879), - [anon_sym_record] = ACTIONS(881), - [anon_sym_ATinterface] = ACTIONS(879), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_byte] = ACTIONS(881), - [anon_sym_short] = ACTIONS(881), - [anon_sym_int] = ACTIONS(881), - [anon_sym_long] = ACTIONS(881), - [anon_sym_char] = ACTIONS(881), - [anon_sym_float] = ACTIONS(881), - [anon_sym_double] = ACTIONS(881), - [sym_boolean_type] = ACTIONS(881), - [sym_void_type] = ACTIONS(881), - [sym_this] = ACTIONS(881), - [sym_super] = ACTIONS(881), + [STATE(308)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(648), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(883), - [sym_identifier] = ACTIONS(885), - [sym_decimal_integer_literal] = ACTIONS(885), - [sym_hex_integer_literal] = ACTIONS(885), - [sym_octal_integer_literal] = ACTIONS(885), - [sym_binary_integer_literal] = ACTIONS(883), - [sym_decimal_floating_point_literal] = ACTIONS(883), - [sym_hex_floating_point_literal] = ACTIONS(885), - [sym_true] = ACTIONS(885), - [sym_false] = ACTIONS(885), - [sym_character_literal] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), - [sym_null_literal] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(885), - [anon_sym_DASH] = ACTIONS(885), - [anon_sym_final] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(883), - [anon_sym_TILDE] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(883), - [anon_sym_new] = ACTIONS(885), - [anon_sym_class] = ACTIONS(885), - [anon_sym_switch] = ACTIONS(885), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_case] = ACTIONS(885), - [anon_sym_default] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(883), - [anon_sym_assert] = ACTIONS(885), - [anon_sym_do] = ACTIONS(885), - [anon_sym_while] = ACTIONS(885), - [anon_sym_break] = ACTIONS(885), - [anon_sym_continue] = ACTIONS(885), - [anon_sym_return] = ACTIONS(885), - [anon_sym_yield] = ACTIONS(885), - [anon_sym_synchronized] = ACTIONS(885), - [anon_sym_throw] = ACTIONS(885), - [anon_sym_try] = ACTIONS(885), - [anon_sym_if] = ACTIONS(885), - [anon_sym_else] = ACTIONS(885), - [anon_sym_for] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(885), - [anon_sym_open] = ACTIONS(885), - [anon_sym_module] = ACTIONS(885), - [anon_sym_static] = ACTIONS(885), - [anon_sym_with] = ACTIONS(885), - [anon_sym_package] = ACTIONS(885), - [anon_sym_import] = ACTIONS(885), - [anon_sym_enum] = ACTIONS(885), - [anon_sym_public] = ACTIONS(885), - [anon_sym_protected] = ACTIONS(885), - [anon_sym_private] = ACTIONS(885), - [anon_sym_abstract] = ACTIONS(885), - [anon_sym_strictfp] = ACTIONS(885), - [anon_sym_native] = ACTIONS(885), - [anon_sym_transient] = ACTIONS(885), - [anon_sym_volatile] = ACTIONS(885), - [anon_sym_sealed] = ACTIONS(885), - [anon_sym_non_DASHsealed] = ACTIONS(883), - [anon_sym_record] = ACTIONS(885), - [anon_sym_ATinterface] = ACTIONS(883), - [anon_sym_interface] = ACTIONS(885), - [anon_sym_byte] = ACTIONS(885), - [anon_sym_short] = ACTIONS(885), - [anon_sym_int] = ACTIONS(885), - [anon_sym_long] = ACTIONS(885), - [anon_sym_char] = ACTIONS(885), - [anon_sym_float] = ACTIONS(885), - [anon_sym_double] = ACTIONS(885), - [sym_boolean_type] = ACTIONS(885), - [sym_void_type] = ACTIONS(885), - [sym_this] = ACTIONS(885), - [sym_super] = ACTIONS(885), + [STATE(309)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(650), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(887), - [sym_identifier] = ACTIONS(889), - [sym_decimal_integer_literal] = ACTIONS(889), - [sym_hex_integer_literal] = ACTIONS(889), - [sym_octal_integer_literal] = ACTIONS(889), - [sym_binary_integer_literal] = ACTIONS(887), - [sym_decimal_floating_point_literal] = ACTIONS(887), - [sym_hex_floating_point_literal] = ACTIONS(889), - [sym_true] = ACTIONS(889), - [sym_false] = ACTIONS(889), - [sym_character_literal] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(889), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(887), - [anon_sym_RBRACE] = ACTIONS(887), - [sym_null_literal] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_final] = ACTIONS(889), - [anon_sym_BANG] = ACTIONS(887), - [anon_sym_TILDE] = ACTIONS(887), - [anon_sym_PLUS_PLUS] = ACTIONS(887), - [anon_sym_DASH_DASH] = ACTIONS(887), - [anon_sym_new] = ACTIONS(889), - [anon_sym_class] = ACTIONS(889), - [anon_sym_switch] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_case] = ACTIONS(889), - [anon_sym_default] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(887), - [anon_sym_assert] = ACTIONS(889), - [anon_sym_do] = ACTIONS(889), - [anon_sym_while] = ACTIONS(889), - [anon_sym_break] = ACTIONS(889), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_return] = ACTIONS(889), - [anon_sym_yield] = ACTIONS(889), - [anon_sym_synchronized] = ACTIONS(889), - [anon_sym_throw] = ACTIONS(889), - [anon_sym_try] = ACTIONS(889), - [anon_sym_if] = ACTIONS(889), - [anon_sym_else] = ACTIONS(889), - [anon_sym_for] = ACTIONS(889), - [anon_sym_AT] = ACTIONS(889), - [anon_sym_open] = ACTIONS(889), - [anon_sym_module] = ACTIONS(889), - [anon_sym_static] = ACTIONS(889), - [anon_sym_with] = ACTIONS(889), - [anon_sym_package] = ACTIONS(889), - [anon_sym_import] = ACTIONS(889), - [anon_sym_enum] = ACTIONS(889), - [anon_sym_public] = ACTIONS(889), - [anon_sym_protected] = ACTIONS(889), - [anon_sym_private] = ACTIONS(889), - [anon_sym_abstract] = ACTIONS(889), - [anon_sym_strictfp] = ACTIONS(889), - [anon_sym_native] = ACTIONS(889), - [anon_sym_transient] = ACTIONS(889), - [anon_sym_volatile] = ACTIONS(889), - [anon_sym_sealed] = ACTIONS(889), - [anon_sym_non_DASHsealed] = ACTIONS(887), - [anon_sym_record] = ACTIONS(889), - [anon_sym_ATinterface] = ACTIONS(887), - [anon_sym_interface] = ACTIONS(889), - [anon_sym_byte] = ACTIONS(889), - [anon_sym_short] = ACTIONS(889), - [anon_sym_int] = ACTIONS(889), - [anon_sym_long] = ACTIONS(889), - [anon_sym_char] = ACTIONS(889), - [anon_sym_float] = ACTIONS(889), - [anon_sym_double] = ACTIONS(889), - [sym_boolean_type] = ACTIONS(889), - [sym_void_type] = ACTIONS(889), - [sym_this] = ACTIONS(889), - [sym_super] = ACTIONS(889), + [STATE(310)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(651), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [sym_decimal_integer_literal] = ACTIONS(893), - [sym_hex_integer_literal] = ACTIONS(893), - [sym_octal_integer_literal] = ACTIONS(893), - [sym_binary_integer_literal] = ACTIONS(891), - [sym_decimal_floating_point_literal] = ACTIONS(891), - [sym_hex_floating_point_literal] = ACTIONS(893), - [sym_true] = ACTIONS(893), - [sym_false] = ACTIONS(893), - [sym_character_literal] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(893), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [sym_null_literal] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_final] = ACTIONS(893), - [anon_sym_BANG] = ACTIONS(891), - [anon_sym_TILDE] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_new] = ACTIONS(893), - [anon_sym_class] = ACTIONS(893), - [anon_sym_switch] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_case] = ACTIONS(893), - [anon_sym_default] = ACTIONS(893), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_assert] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [anon_sym_break] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_yield] = ACTIONS(893), - [anon_sym_synchronized] = ACTIONS(893), - [anon_sym_throw] = ACTIONS(893), - [anon_sym_try] = ACTIONS(893), - [anon_sym_if] = ACTIONS(893), - [anon_sym_else] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_AT] = ACTIONS(893), - [anon_sym_open] = ACTIONS(893), - [anon_sym_module] = ACTIONS(893), - [anon_sym_static] = ACTIONS(893), - [anon_sym_with] = ACTIONS(893), - [anon_sym_package] = ACTIONS(893), - [anon_sym_import] = ACTIONS(893), - [anon_sym_enum] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_protected] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_abstract] = ACTIONS(893), - [anon_sym_strictfp] = ACTIONS(893), - [anon_sym_native] = ACTIONS(893), - [anon_sym_transient] = ACTIONS(893), - [anon_sym_volatile] = ACTIONS(893), - [anon_sym_sealed] = ACTIONS(893), - [anon_sym_non_DASHsealed] = ACTIONS(891), - [anon_sym_record] = ACTIONS(893), - [anon_sym_ATinterface] = ACTIONS(891), - [anon_sym_interface] = ACTIONS(893), - [anon_sym_byte] = ACTIONS(893), - [anon_sym_short] = ACTIONS(893), - [anon_sym_int] = ACTIONS(893), - [anon_sym_long] = ACTIONS(893), - [anon_sym_char] = ACTIONS(893), - [anon_sym_float] = ACTIONS(893), - [anon_sym_double] = ACTIONS(893), - [sym_boolean_type] = ACTIONS(893), - [sym_void_type] = ACTIONS(893), - [sym_this] = ACTIONS(893), - [sym_super] = ACTIONS(893), + [STATE(311)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(652), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(895), - [sym_identifier] = ACTIONS(897), - [sym_decimal_integer_literal] = ACTIONS(897), - [sym_hex_integer_literal] = ACTIONS(897), - [sym_octal_integer_literal] = ACTIONS(897), - [sym_binary_integer_literal] = ACTIONS(895), - [sym_decimal_floating_point_literal] = ACTIONS(895), - [sym_hex_floating_point_literal] = ACTIONS(897), - [sym_true] = ACTIONS(897), - [sym_false] = ACTIONS(897), - [sym_character_literal] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(897), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [sym_null_literal] = ACTIONS(897), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_LT] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_final] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_DASH_DASH] = ACTIONS(895), - [anon_sym_new] = ACTIONS(897), - [anon_sym_class] = ACTIONS(897), - [anon_sym_switch] = ACTIONS(897), - [anon_sym_LBRACE] = ACTIONS(895), - [anon_sym_case] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_assert] = ACTIONS(897), - [anon_sym_do] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_yield] = ACTIONS(897), - [anon_sym_synchronized] = ACTIONS(897), - [anon_sym_throw] = ACTIONS(897), - [anon_sym_try] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_else] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_AT] = ACTIONS(897), - [anon_sym_open] = ACTIONS(897), - [anon_sym_module] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_with] = ACTIONS(897), - [anon_sym_package] = ACTIONS(897), - [anon_sym_import] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_public] = ACTIONS(897), - [anon_sym_protected] = ACTIONS(897), - [anon_sym_private] = ACTIONS(897), - [anon_sym_abstract] = ACTIONS(897), - [anon_sym_strictfp] = ACTIONS(897), - [anon_sym_native] = ACTIONS(897), - [anon_sym_transient] = ACTIONS(897), - [anon_sym_volatile] = ACTIONS(897), - [anon_sym_sealed] = ACTIONS(897), - [anon_sym_non_DASHsealed] = ACTIONS(895), - [anon_sym_record] = ACTIONS(897), - [anon_sym_ATinterface] = ACTIONS(895), - [anon_sym_interface] = ACTIONS(897), - [anon_sym_byte] = ACTIONS(897), - [anon_sym_short] = ACTIONS(897), - [anon_sym_int] = ACTIONS(897), - [anon_sym_long] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_float] = ACTIONS(897), - [anon_sym_double] = ACTIONS(897), - [sym_boolean_type] = ACTIONS(897), - [sym_void_type] = ACTIONS(897), - [sym_this] = ACTIONS(897), - [sym_super] = ACTIONS(897), + [STATE(312)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(654), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(899), - [sym_identifier] = ACTIONS(901), - [sym_decimal_integer_literal] = ACTIONS(901), - [sym_hex_integer_literal] = ACTIONS(901), - [sym_octal_integer_literal] = ACTIONS(901), - [sym_binary_integer_literal] = ACTIONS(899), - [sym_decimal_floating_point_literal] = ACTIONS(899), - [sym_hex_floating_point_literal] = ACTIONS(901), - [sym_true] = ACTIONS(901), - [sym_false] = ACTIONS(901), - [sym_character_literal] = ACTIONS(899), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [sym_null_literal] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(899), - [anon_sym_PLUS] = ACTIONS(901), - [anon_sym_DASH] = ACTIONS(901), - [anon_sym_final] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(899), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(899), - [anon_sym_DASH_DASH] = ACTIONS(899), - [anon_sym_new] = ACTIONS(901), - [anon_sym_class] = ACTIONS(901), - [anon_sym_switch] = ACTIONS(901), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_case] = ACTIONS(901), - [anon_sym_default] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_assert] = ACTIONS(901), - [anon_sym_do] = ACTIONS(901), - [anon_sym_while] = ACTIONS(901), - [anon_sym_break] = ACTIONS(901), - [anon_sym_continue] = ACTIONS(901), - [anon_sym_return] = ACTIONS(901), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_synchronized] = ACTIONS(901), - [anon_sym_throw] = ACTIONS(901), - [anon_sym_try] = ACTIONS(901), - [anon_sym_if] = ACTIONS(901), - [anon_sym_else] = ACTIONS(901), - [anon_sym_for] = ACTIONS(901), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_open] = ACTIONS(901), - [anon_sym_module] = ACTIONS(901), - [anon_sym_static] = ACTIONS(901), - [anon_sym_with] = ACTIONS(901), - [anon_sym_package] = ACTIONS(901), - [anon_sym_import] = ACTIONS(901), - [anon_sym_enum] = ACTIONS(901), - [anon_sym_public] = ACTIONS(901), - [anon_sym_protected] = ACTIONS(901), - [anon_sym_private] = ACTIONS(901), - [anon_sym_abstract] = ACTIONS(901), - [anon_sym_strictfp] = ACTIONS(901), - [anon_sym_native] = ACTIONS(901), - [anon_sym_transient] = ACTIONS(901), - [anon_sym_volatile] = ACTIONS(901), - [anon_sym_sealed] = ACTIONS(901), - [anon_sym_non_DASHsealed] = ACTIONS(899), - [anon_sym_record] = ACTIONS(901), - [anon_sym_ATinterface] = ACTIONS(899), - [anon_sym_interface] = ACTIONS(901), - [anon_sym_byte] = ACTIONS(901), - [anon_sym_short] = ACTIONS(901), - [anon_sym_int] = ACTIONS(901), - [anon_sym_long] = ACTIONS(901), - [anon_sym_char] = ACTIONS(901), - [anon_sym_float] = ACTIONS(901), - [anon_sym_double] = ACTIONS(901), - [sym_boolean_type] = ACTIONS(901), - [sym_void_type] = ACTIONS(901), - [sym_this] = ACTIONS(901), - [sym_super] = ACTIONS(901), + [STATE(313)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(655), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(903), - [sym_identifier] = ACTIONS(905), - [sym_decimal_integer_literal] = ACTIONS(905), - [sym_hex_integer_literal] = ACTIONS(905), - [sym_octal_integer_literal] = ACTIONS(905), - [sym_binary_integer_literal] = ACTIONS(903), - [sym_decimal_floating_point_literal] = ACTIONS(903), - [sym_hex_floating_point_literal] = ACTIONS(905), - [sym_true] = ACTIONS(905), - [sym_false] = ACTIONS(905), - [sym_character_literal] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(905), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [sym_null_literal] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_final] = ACTIONS(905), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_new] = ACTIONS(905), - [anon_sym_class] = ACTIONS(905), - [anon_sym_switch] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_case] = ACTIONS(905), - [anon_sym_default] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_assert] = ACTIONS(905), - [anon_sym_do] = ACTIONS(905), - [anon_sym_while] = ACTIONS(905), - [anon_sym_break] = ACTIONS(905), - [anon_sym_continue] = ACTIONS(905), - [anon_sym_return] = ACTIONS(905), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_synchronized] = ACTIONS(905), - [anon_sym_throw] = ACTIONS(905), - [anon_sym_try] = ACTIONS(905), - [anon_sym_if] = ACTIONS(905), - [anon_sym_else] = ACTIONS(905), - [anon_sym_for] = ACTIONS(905), - [anon_sym_AT] = ACTIONS(905), - [anon_sym_open] = ACTIONS(905), - [anon_sym_module] = ACTIONS(905), - [anon_sym_static] = ACTIONS(905), - [anon_sym_with] = ACTIONS(905), - [anon_sym_package] = ACTIONS(905), - [anon_sym_import] = ACTIONS(905), - [anon_sym_enum] = ACTIONS(905), - [anon_sym_public] = ACTIONS(905), - [anon_sym_protected] = ACTIONS(905), - [anon_sym_private] = ACTIONS(905), - [anon_sym_abstract] = ACTIONS(905), - [anon_sym_strictfp] = ACTIONS(905), - [anon_sym_native] = ACTIONS(905), - [anon_sym_transient] = ACTIONS(905), - [anon_sym_volatile] = ACTIONS(905), - [anon_sym_sealed] = ACTIONS(905), - [anon_sym_non_DASHsealed] = ACTIONS(903), - [anon_sym_record] = ACTIONS(905), - [anon_sym_ATinterface] = ACTIONS(903), - [anon_sym_interface] = ACTIONS(905), - [anon_sym_byte] = ACTIONS(905), - [anon_sym_short] = ACTIONS(905), - [anon_sym_int] = ACTIONS(905), - [anon_sym_long] = ACTIONS(905), - [anon_sym_char] = ACTIONS(905), - [anon_sym_float] = ACTIONS(905), - [anon_sym_double] = ACTIONS(905), - [sym_boolean_type] = ACTIONS(905), - [sym_void_type] = ACTIONS(905), - [sym_this] = ACTIONS(905), - [sym_super] = ACTIONS(905), + [STATE(314)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(656), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [316] = { - [ts_builtin_sym_end] = ACTIONS(907), - [sym_identifier] = ACTIONS(909), - [sym_decimal_integer_literal] = ACTIONS(909), - [sym_hex_integer_literal] = ACTIONS(909), - [sym_octal_integer_literal] = ACTIONS(909), - [sym_binary_integer_literal] = ACTIONS(907), - [sym_decimal_floating_point_literal] = ACTIONS(907), - [sym_hex_floating_point_literal] = ACTIONS(909), - [sym_true] = ACTIONS(909), - [sym_false] = ACTIONS(909), - [sym_character_literal] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(909), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [sym_null_literal] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_final] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_TILDE] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_new] = ACTIONS(909), - [anon_sym_class] = ACTIONS(909), - [anon_sym_switch] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_case] = ACTIONS(909), - [anon_sym_default] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_assert] = ACTIONS(909), - [anon_sym_do] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_yield] = ACTIONS(909), - [anon_sym_synchronized] = ACTIONS(909), - [anon_sym_throw] = ACTIONS(909), - [anon_sym_try] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_else] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym_open] = ACTIONS(909), - [anon_sym_module] = ACTIONS(909), - [anon_sym_static] = ACTIONS(909), - [anon_sym_with] = ACTIONS(909), - [anon_sym_package] = ACTIONS(909), - [anon_sym_import] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(909), - [anon_sym_public] = ACTIONS(909), - [anon_sym_protected] = ACTIONS(909), - [anon_sym_private] = ACTIONS(909), - [anon_sym_abstract] = ACTIONS(909), - [anon_sym_strictfp] = ACTIONS(909), - [anon_sym_native] = ACTIONS(909), - [anon_sym_transient] = ACTIONS(909), - [anon_sym_volatile] = ACTIONS(909), - [anon_sym_sealed] = ACTIONS(909), - [anon_sym_non_DASHsealed] = ACTIONS(907), - [anon_sym_record] = ACTIONS(909), - [anon_sym_ATinterface] = ACTIONS(907), - [anon_sym_interface] = ACTIONS(909), - [anon_sym_byte] = ACTIONS(909), - [anon_sym_short] = ACTIONS(909), - [anon_sym_int] = ACTIONS(909), - [anon_sym_long] = ACTIONS(909), - [anon_sym_char] = ACTIONS(909), - [anon_sym_float] = ACTIONS(909), - [anon_sym_double] = ACTIONS(909), - [sym_boolean_type] = ACTIONS(909), - [sym_void_type] = ACTIONS(909), - [sym_this] = ACTIONS(909), - [sym_super] = ACTIONS(909), + [STATE(315)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(657), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(911), - [sym_identifier] = ACTIONS(913), - [sym_decimal_integer_literal] = ACTIONS(913), - [sym_hex_integer_literal] = ACTIONS(913), - [sym_octal_integer_literal] = ACTIONS(913), - [sym_binary_integer_literal] = ACTIONS(911), - [sym_decimal_floating_point_literal] = ACTIONS(911), - [sym_hex_floating_point_literal] = ACTIONS(913), - [sym_true] = ACTIONS(913), - [sym_false] = ACTIONS(913), - [sym_character_literal] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(913), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [sym_null_literal] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_final] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_TILDE] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_DASH_DASH] = ACTIONS(911), - [anon_sym_new] = ACTIONS(913), - [anon_sym_class] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_assert] = ACTIONS(913), - [anon_sym_do] = ACTIONS(913), - [anon_sym_while] = ACTIONS(913), - [anon_sym_break] = ACTIONS(913), - [anon_sym_continue] = ACTIONS(913), - [anon_sym_return] = ACTIONS(913), - [anon_sym_yield] = ACTIONS(913), - [anon_sym_synchronized] = ACTIONS(913), - [anon_sym_throw] = ACTIONS(913), - [anon_sym_try] = ACTIONS(913), - [anon_sym_if] = ACTIONS(913), - [anon_sym_else] = ACTIONS(913), - [anon_sym_for] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(913), - [anon_sym_open] = ACTIONS(913), - [anon_sym_module] = ACTIONS(913), - [anon_sym_static] = ACTIONS(913), - [anon_sym_with] = ACTIONS(913), - [anon_sym_package] = ACTIONS(913), - [anon_sym_import] = ACTIONS(913), - [anon_sym_enum] = ACTIONS(913), - [anon_sym_public] = ACTIONS(913), - [anon_sym_protected] = ACTIONS(913), - [anon_sym_private] = ACTIONS(913), - [anon_sym_abstract] = ACTIONS(913), - [anon_sym_strictfp] = ACTIONS(913), - [anon_sym_native] = ACTIONS(913), - [anon_sym_transient] = ACTIONS(913), - [anon_sym_volatile] = ACTIONS(913), - [anon_sym_sealed] = ACTIONS(913), - [anon_sym_non_DASHsealed] = ACTIONS(911), - [anon_sym_record] = ACTIONS(913), - [anon_sym_ATinterface] = ACTIONS(911), - [anon_sym_interface] = ACTIONS(913), - [anon_sym_byte] = ACTIONS(913), - [anon_sym_short] = ACTIONS(913), - [anon_sym_int] = ACTIONS(913), - [anon_sym_long] = ACTIONS(913), - [anon_sym_char] = ACTIONS(913), - [anon_sym_float] = ACTIONS(913), - [anon_sym_double] = ACTIONS(913), - [sym_boolean_type] = ACTIONS(913), - [sym_void_type] = ACTIONS(913), - [sym_this] = ACTIONS(913), - [sym_super] = ACTIONS(913), + [STATE(316)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(698), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(915), - [sym_identifier] = ACTIONS(917), - [sym_decimal_integer_literal] = ACTIONS(917), - [sym_hex_integer_literal] = ACTIONS(917), - [sym_octal_integer_literal] = ACTIONS(917), - [sym_binary_integer_literal] = ACTIONS(915), - [sym_decimal_floating_point_literal] = ACTIONS(915), - [sym_hex_floating_point_literal] = ACTIONS(917), - [sym_true] = ACTIONS(917), - [sym_false] = ACTIONS(917), - [sym_character_literal] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(917), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(915), - [anon_sym_RBRACE] = ACTIONS(915), - [sym_null_literal] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(917), - [anon_sym_DASH] = ACTIONS(917), - [anon_sym_final] = ACTIONS(917), - [anon_sym_BANG] = ACTIONS(915), - [anon_sym_TILDE] = ACTIONS(915), - [anon_sym_PLUS_PLUS] = ACTIONS(915), - [anon_sym_DASH_DASH] = ACTIONS(915), - [anon_sym_new] = ACTIONS(917), - [anon_sym_class] = ACTIONS(917), - [anon_sym_switch] = ACTIONS(917), - [anon_sym_LBRACE] = ACTIONS(915), - [anon_sym_case] = ACTIONS(917), - [anon_sym_default] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(915), - [anon_sym_assert] = ACTIONS(917), - [anon_sym_do] = ACTIONS(917), - [anon_sym_while] = ACTIONS(917), - [anon_sym_break] = ACTIONS(917), - [anon_sym_continue] = ACTIONS(917), - [anon_sym_return] = ACTIONS(917), - [anon_sym_yield] = ACTIONS(917), - [anon_sym_synchronized] = ACTIONS(917), - [anon_sym_throw] = ACTIONS(917), - [anon_sym_try] = ACTIONS(917), - [anon_sym_if] = ACTIONS(917), - [anon_sym_else] = ACTIONS(917), - [anon_sym_for] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(917), - [anon_sym_open] = ACTIONS(917), - [anon_sym_module] = ACTIONS(917), - [anon_sym_static] = ACTIONS(917), - [anon_sym_with] = ACTIONS(917), - [anon_sym_package] = ACTIONS(917), - [anon_sym_import] = ACTIONS(917), - [anon_sym_enum] = ACTIONS(917), - [anon_sym_public] = ACTIONS(917), - [anon_sym_protected] = ACTIONS(917), - [anon_sym_private] = ACTIONS(917), - [anon_sym_abstract] = ACTIONS(917), - [anon_sym_strictfp] = ACTIONS(917), - [anon_sym_native] = ACTIONS(917), - [anon_sym_transient] = ACTIONS(917), - [anon_sym_volatile] = ACTIONS(917), - [anon_sym_sealed] = ACTIONS(917), - [anon_sym_non_DASHsealed] = ACTIONS(915), - [anon_sym_record] = ACTIONS(917), - [anon_sym_ATinterface] = ACTIONS(915), - [anon_sym_interface] = ACTIONS(917), - [anon_sym_byte] = ACTIONS(917), - [anon_sym_short] = ACTIONS(917), - [anon_sym_int] = ACTIONS(917), - [anon_sym_long] = ACTIONS(917), - [anon_sym_char] = ACTIONS(917), - [anon_sym_float] = ACTIONS(917), - [anon_sym_double] = ACTIONS(917), - [sym_boolean_type] = ACTIONS(917), - [sym_void_type] = ACTIONS(917), - [sym_this] = ACTIONS(917), - [sym_super] = ACTIONS(917), + [STATE(317)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(699), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(919), - [sym_identifier] = ACTIONS(921), - [sym_decimal_integer_literal] = ACTIONS(921), - [sym_hex_integer_literal] = ACTIONS(921), - [sym_octal_integer_literal] = ACTIONS(921), - [sym_binary_integer_literal] = ACTIONS(919), - [sym_decimal_floating_point_literal] = ACTIONS(919), - [sym_hex_floating_point_literal] = ACTIONS(921), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [sym_character_literal] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(921), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [sym_null_literal] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_final] = ACTIONS(921), - [anon_sym_BANG] = ACTIONS(919), - [anon_sym_TILDE] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_DASH_DASH] = ACTIONS(919), - [anon_sym_new] = ACTIONS(921), - [anon_sym_class] = ACTIONS(921), - [anon_sym_switch] = ACTIONS(921), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_case] = ACTIONS(921), - [anon_sym_default] = ACTIONS(921), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_assert] = ACTIONS(921), - [anon_sym_do] = ACTIONS(921), - [anon_sym_while] = ACTIONS(921), - [anon_sym_break] = ACTIONS(921), - [anon_sym_continue] = ACTIONS(921), - [anon_sym_return] = ACTIONS(921), - [anon_sym_yield] = ACTIONS(921), - [anon_sym_synchronized] = ACTIONS(921), - [anon_sym_throw] = ACTIONS(921), - [anon_sym_try] = ACTIONS(921), - [anon_sym_if] = ACTIONS(921), - [anon_sym_else] = ACTIONS(921), - [anon_sym_for] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(921), - [anon_sym_open] = ACTIONS(921), - [anon_sym_module] = ACTIONS(921), - [anon_sym_static] = ACTIONS(921), - [anon_sym_with] = ACTIONS(921), - [anon_sym_package] = ACTIONS(921), - [anon_sym_import] = ACTIONS(921), - [anon_sym_enum] = ACTIONS(921), - [anon_sym_public] = ACTIONS(921), - [anon_sym_protected] = ACTIONS(921), - [anon_sym_private] = ACTIONS(921), - [anon_sym_abstract] = ACTIONS(921), - [anon_sym_strictfp] = ACTIONS(921), - [anon_sym_native] = ACTIONS(921), - [anon_sym_transient] = ACTIONS(921), - [anon_sym_volatile] = ACTIONS(921), - [anon_sym_sealed] = ACTIONS(921), - [anon_sym_non_DASHsealed] = ACTIONS(919), - [anon_sym_record] = ACTIONS(921), - [anon_sym_ATinterface] = ACTIONS(919), - [anon_sym_interface] = ACTIONS(921), - [anon_sym_byte] = ACTIONS(921), - [anon_sym_short] = ACTIONS(921), - [anon_sym_int] = ACTIONS(921), - [anon_sym_long] = ACTIONS(921), - [anon_sym_char] = ACTIONS(921), - [anon_sym_float] = ACTIONS(921), - [anon_sym_double] = ACTIONS(921), - [sym_boolean_type] = ACTIONS(921), - [sym_void_type] = ACTIONS(921), - [sym_this] = ACTIONS(921), - [sym_super] = ACTIONS(921), + [STATE(318)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(703), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(923), - [sym_identifier] = ACTIONS(925), - [sym_decimal_integer_literal] = ACTIONS(925), - [sym_hex_integer_literal] = ACTIONS(925), - [sym_octal_integer_literal] = ACTIONS(925), - [sym_binary_integer_literal] = ACTIONS(923), - [sym_decimal_floating_point_literal] = ACTIONS(923), - [sym_hex_floating_point_literal] = ACTIONS(925), - [sym_true] = ACTIONS(925), - [sym_false] = ACTIONS(925), - [sym_character_literal] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [sym_null_literal] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(925), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_final] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_TILDE] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_new] = ACTIONS(925), - [anon_sym_class] = ACTIONS(925), - [anon_sym_switch] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_case] = ACTIONS(925), - [anon_sym_default] = ACTIONS(925), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_assert] = ACTIONS(925), - [anon_sym_do] = ACTIONS(925), - [anon_sym_while] = ACTIONS(925), - [anon_sym_break] = ACTIONS(925), - [anon_sym_continue] = ACTIONS(925), - [anon_sym_return] = ACTIONS(925), - [anon_sym_yield] = ACTIONS(925), - [anon_sym_synchronized] = ACTIONS(925), - [anon_sym_throw] = ACTIONS(925), - [anon_sym_try] = ACTIONS(925), - [anon_sym_if] = ACTIONS(925), - [anon_sym_else] = ACTIONS(925), - [anon_sym_for] = ACTIONS(925), - [anon_sym_AT] = ACTIONS(925), - [anon_sym_open] = ACTIONS(925), - [anon_sym_module] = ACTIONS(925), - [anon_sym_static] = ACTIONS(925), - [anon_sym_with] = ACTIONS(925), - [anon_sym_package] = ACTIONS(925), - [anon_sym_import] = ACTIONS(925), - [anon_sym_enum] = ACTIONS(925), - [anon_sym_public] = ACTIONS(925), - [anon_sym_protected] = ACTIONS(925), - [anon_sym_private] = ACTIONS(925), - [anon_sym_abstract] = ACTIONS(925), - [anon_sym_strictfp] = ACTIONS(925), - [anon_sym_native] = ACTIONS(925), - [anon_sym_transient] = ACTIONS(925), - [anon_sym_volatile] = ACTIONS(925), - [anon_sym_sealed] = ACTIONS(925), - [anon_sym_non_DASHsealed] = ACTIONS(923), - [anon_sym_record] = ACTIONS(925), - [anon_sym_ATinterface] = ACTIONS(923), - [anon_sym_interface] = ACTIONS(925), - [anon_sym_byte] = ACTIONS(925), - [anon_sym_short] = ACTIONS(925), - [anon_sym_int] = ACTIONS(925), - [anon_sym_long] = ACTIONS(925), - [anon_sym_char] = ACTIONS(925), - [anon_sym_float] = ACTIONS(925), - [anon_sym_double] = ACTIONS(925), - [sym_boolean_type] = ACTIONS(925), - [sym_void_type] = ACTIONS(925), - [sym_this] = ACTIONS(925), - [sym_super] = ACTIONS(925), + [STATE(319)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(707), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(927), - [sym_identifier] = ACTIONS(929), - [sym_decimal_integer_literal] = ACTIONS(929), - [sym_hex_integer_literal] = ACTIONS(929), - [sym_octal_integer_literal] = ACTIONS(929), - [sym_binary_integer_literal] = ACTIONS(927), - [sym_decimal_floating_point_literal] = ACTIONS(927), - [sym_hex_floating_point_literal] = ACTIONS(929), - [sym_true] = ACTIONS(929), - [sym_false] = ACTIONS(929), - [sym_character_literal] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(929), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [sym_null_literal] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(929), - [anon_sym_DASH] = ACTIONS(929), - [anon_sym_final] = ACTIONS(929), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_TILDE] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_DASH_DASH] = ACTIONS(927), - [anon_sym_new] = ACTIONS(929), - [anon_sym_class] = ACTIONS(929), - [anon_sym_switch] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_case] = ACTIONS(929), - [anon_sym_default] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_assert] = ACTIONS(929), - [anon_sym_do] = ACTIONS(929), - [anon_sym_while] = ACTIONS(929), - [anon_sym_break] = ACTIONS(929), - [anon_sym_continue] = ACTIONS(929), - [anon_sym_return] = ACTIONS(929), - [anon_sym_yield] = ACTIONS(929), - [anon_sym_synchronized] = ACTIONS(929), - [anon_sym_throw] = ACTIONS(929), - [anon_sym_try] = ACTIONS(929), - [anon_sym_if] = ACTIONS(929), - [anon_sym_else] = ACTIONS(929), - [anon_sym_for] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(929), - [anon_sym_open] = ACTIONS(929), - [anon_sym_module] = ACTIONS(929), - [anon_sym_static] = ACTIONS(929), - [anon_sym_with] = ACTIONS(929), - [anon_sym_package] = ACTIONS(929), - [anon_sym_import] = ACTIONS(929), - [anon_sym_enum] = ACTIONS(929), - [anon_sym_public] = ACTIONS(929), - [anon_sym_protected] = ACTIONS(929), - [anon_sym_private] = ACTIONS(929), - [anon_sym_abstract] = ACTIONS(929), - [anon_sym_strictfp] = ACTIONS(929), - [anon_sym_native] = ACTIONS(929), - [anon_sym_transient] = ACTIONS(929), - [anon_sym_volatile] = ACTIONS(929), - [anon_sym_sealed] = ACTIONS(929), - [anon_sym_non_DASHsealed] = ACTIONS(927), - [anon_sym_record] = ACTIONS(929), - [anon_sym_ATinterface] = ACTIONS(927), - [anon_sym_interface] = ACTIONS(929), - [anon_sym_byte] = ACTIONS(929), - [anon_sym_short] = ACTIONS(929), - [anon_sym_int] = ACTIONS(929), - [anon_sym_long] = ACTIONS(929), - [anon_sym_char] = ACTIONS(929), - [anon_sym_float] = ACTIONS(929), - [anon_sym_double] = ACTIONS(929), - [sym_boolean_type] = ACTIONS(929), - [sym_void_type] = ACTIONS(929), - [sym_this] = ACTIONS(929), - [sym_super] = ACTIONS(929), + [STATE(320)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(709), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(931), - [sym_identifier] = ACTIONS(933), - [sym_decimal_integer_literal] = ACTIONS(933), - [sym_hex_integer_literal] = ACTIONS(933), - [sym_octal_integer_literal] = ACTIONS(933), - [sym_binary_integer_literal] = ACTIONS(931), - [sym_decimal_floating_point_literal] = ACTIONS(931), - [sym_hex_floating_point_literal] = ACTIONS(933), - [sym_true] = ACTIONS(933), - [sym_false] = ACTIONS(933), - [sym_character_literal] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [sym_null_literal] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_final] = ACTIONS(933), - [anon_sym_BANG] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_new] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_switch] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_case] = ACTIONS(933), - [anon_sym_default] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_assert] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_while] = ACTIONS(933), - [anon_sym_break] = ACTIONS(933), - [anon_sym_continue] = ACTIONS(933), - [anon_sym_return] = ACTIONS(933), - [anon_sym_yield] = ACTIONS(933), - [anon_sym_synchronized] = ACTIONS(933), - [anon_sym_throw] = ACTIONS(933), - [anon_sym_try] = ACTIONS(933), - [anon_sym_if] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_for] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_static] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_package] = ACTIONS(933), - [anon_sym_import] = ACTIONS(933), - [anon_sym_enum] = ACTIONS(933), - [anon_sym_public] = ACTIONS(933), - [anon_sym_protected] = ACTIONS(933), - [anon_sym_private] = ACTIONS(933), - [anon_sym_abstract] = ACTIONS(933), - [anon_sym_strictfp] = ACTIONS(933), - [anon_sym_native] = ACTIONS(933), - [anon_sym_transient] = ACTIONS(933), - [anon_sym_volatile] = ACTIONS(933), - [anon_sym_sealed] = ACTIONS(933), - [anon_sym_non_DASHsealed] = ACTIONS(931), - [anon_sym_record] = ACTIONS(933), - [anon_sym_ATinterface] = ACTIONS(931), - [anon_sym_interface] = ACTIONS(933), - [anon_sym_byte] = ACTIONS(933), - [anon_sym_short] = ACTIONS(933), - [anon_sym_int] = ACTIONS(933), - [anon_sym_long] = ACTIONS(933), - [anon_sym_char] = ACTIONS(933), - [anon_sym_float] = ACTIONS(933), - [anon_sym_double] = ACTIONS(933), - [sym_boolean_type] = ACTIONS(933), - [sym_void_type] = ACTIONS(933), - [sym_this] = ACTIONS(933), - [sym_super] = ACTIONS(933), + [STATE(321)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(710), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(935), - [sym_identifier] = ACTIONS(937), - [sym_decimal_integer_literal] = ACTIONS(937), - [sym_hex_integer_literal] = ACTIONS(937), - [sym_octal_integer_literal] = ACTIONS(937), - [sym_binary_integer_literal] = ACTIONS(935), - [sym_decimal_floating_point_literal] = ACTIONS(935), - [sym_hex_floating_point_literal] = ACTIONS(937), - [sym_true] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [sym_character_literal] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(937), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [sym_null_literal] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_final] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_class] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_case] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_assert] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_yield] = ACTIONS(937), - [anon_sym_synchronized] = ACTIONS(937), - [anon_sym_throw] = ACTIONS(937), - [anon_sym_try] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_else] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym_open] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_with] = ACTIONS(937), - [anon_sym_package] = ACTIONS(937), - [anon_sym_import] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_abstract] = ACTIONS(937), - [anon_sym_strictfp] = ACTIONS(937), - [anon_sym_native] = ACTIONS(937), - [anon_sym_transient] = ACTIONS(937), - [anon_sym_volatile] = ACTIONS(937), - [anon_sym_sealed] = ACTIONS(937), - [anon_sym_non_DASHsealed] = ACTIONS(935), - [anon_sym_record] = ACTIONS(937), - [anon_sym_ATinterface] = ACTIONS(935), - [anon_sym_interface] = ACTIONS(937), - [anon_sym_byte] = ACTIONS(937), - [anon_sym_short] = ACTIONS(937), - [anon_sym_int] = ACTIONS(937), - [anon_sym_long] = ACTIONS(937), - [anon_sym_char] = ACTIONS(937), - [anon_sym_float] = ACTIONS(937), - [anon_sym_double] = ACTIONS(937), - [sym_boolean_type] = ACTIONS(937), - [sym_void_type] = ACTIONS(937), - [sym_this] = ACTIONS(937), - [sym_super] = ACTIONS(937), + [STATE(322)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(662), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(939), - [sym_identifier] = ACTIONS(941), - [sym_decimal_integer_literal] = ACTIONS(941), - [sym_hex_integer_literal] = ACTIONS(941), - [sym_octal_integer_literal] = ACTIONS(941), - [sym_binary_integer_literal] = ACTIONS(939), - [sym_decimal_floating_point_literal] = ACTIONS(939), - [sym_hex_floating_point_literal] = ACTIONS(941), - [sym_true] = ACTIONS(941), - [sym_false] = ACTIONS(941), - [sym_character_literal] = ACTIONS(939), - [anon_sym_DQUOTE] = ACTIONS(941), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [sym_null_literal] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_LT] = ACTIONS(939), - [anon_sym_PLUS] = ACTIONS(941), - [anon_sym_DASH] = ACTIONS(941), - [anon_sym_final] = ACTIONS(941), - [anon_sym_BANG] = ACTIONS(939), - [anon_sym_TILDE] = ACTIONS(939), - [anon_sym_PLUS_PLUS] = ACTIONS(939), - [anon_sym_DASH_DASH] = ACTIONS(939), - [anon_sym_new] = ACTIONS(941), - [anon_sym_class] = ACTIONS(941), - [anon_sym_switch] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_case] = ACTIONS(941), - [anon_sym_default] = ACTIONS(941), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_assert] = ACTIONS(941), - [anon_sym_do] = ACTIONS(941), - [anon_sym_while] = ACTIONS(941), - [anon_sym_break] = ACTIONS(941), - [anon_sym_continue] = ACTIONS(941), - [anon_sym_return] = ACTIONS(941), - [anon_sym_yield] = ACTIONS(941), - [anon_sym_synchronized] = ACTIONS(941), - [anon_sym_throw] = ACTIONS(941), - [anon_sym_try] = ACTIONS(941), - [anon_sym_if] = ACTIONS(941), - [anon_sym_else] = ACTIONS(941), - [anon_sym_for] = ACTIONS(941), - [anon_sym_AT] = ACTIONS(941), - [anon_sym_open] = ACTIONS(941), - [anon_sym_module] = ACTIONS(941), - [anon_sym_static] = ACTIONS(941), - [anon_sym_with] = ACTIONS(941), - [anon_sym_package] = ACTIONS(941), - [anon_sym_import] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(941), - [anon_sym_public] = ACTIONS(941), - [anon_sym_protected] = ACTIONS(941), - [anon_sym_private] = ACTIONS(941), - [anon_sym_abstract] = ACTIONS(941), - [anon_sym_strictfp] = ACTIONS(941), - [anon_sym_native] = ACTIONS(941), - [anon_sym_transient] = ACTIONS(941), - [anon_sym_volatile] = ACTIONS(941), - [anon_sym_sealed] = ACTIONS(941), - [anon_sym_non_DASHsealed] = ACTIONS(939), - [anon_sym_record] = ACTIONS(941), - [anon_sym_ATinterface] = ACTIONS(939), - [anon_sym_interface] = ACTIONS(941), - [anon_sym_byte] = ACTIONS(941), - [anon_sym_short] = ACTIONS(941), - [anon_sym_int] = ACTIONS(941), - [anon_sym_long] = ACTIONS(941), - [anon_sym_char] = ACTIONS(941), - [anon_sym_float] = ACTIONS(941), - [anon_sym_double] = ACTIONS(941), - [sym_boolean_type] = ACTIONS(941), - [sym_void_type] = ACTIONS(941), - [sym_this] = ACTIONS(941), - [sym_super] = ACTIONS(941), + [STATE(323)] = { + [sym_identifier] = ACTIONS(1155), + [sym_decimal_integer_literal] = ACTIONS(1155), + [sym_hex_integer_literal] = ACTIONS(1155), + [sym_octal_integer_literal] = ACTIONS(1155), + [sym_binary_integer_literal] = ACTIONS(1157), + [sym_decimal_floating_point_literal] = ACTIONS(1157), + [sym_hex_floating_point_literal] = ACTIONS(1155), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [sym_character_literal] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [sym_null_literal] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_final] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_class] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_case] = ACTIONS(1155), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym_assert] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1155), + [anon_sym_synchronized] = ACTIONS(1155), + [anon_sym_throw] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_open] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_package] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_public] = ACTIONS(1155), + [anon_sym_protected] = ACTIONS(1155), + [anon_sym_private] = ACTIONS(1155), + [anon_sym_abstract] = ACTIONS(1155), + [anon_sym_strictfp] = ACTIONS(1155), + [anon_sym_native] = ACTIONS(1155), + [anon_sym_transient] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_sealed] = ACTIONS(1155), + [anon_sym_non_DASHsealed] = ACTIONS(1157), + [anon_sym_record] = ACTIONS(1155), + [anon_sym_ATinterface] = ACTIONS(1157), + [anon_sym_interface] = ACTIONS(1155), + [anon_sym_byte] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_int] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_char] = ACTIONS(1155), + [anon_sym_float] = ACTIONS(1155), + [anon_sym_double] = ACTIONS(1155), + [sym_boolean_type] = ACTIONS(1155), + [sym_void_type] = ACTIONS(1155), + [sym_this] = ACTIONS(1155), + [sym_super] = ACTIONS(1155), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(943), - [sym_identifier] = ACTIONS(945), - [sym_decimal_integer_literal] = ACTIONS(945), - [sym_hex_integer_literal] = ACTIONS(945), - [sym_octal_integer_literal] = ACTIONS(945), - [sym_binary_integer_literal] = ACTIONS(943), - [sym_decimal_floating_point_literal] = ACTIONS(943), - [sym_hex_floating_point_literal] = ACTIONS(945), - [sym_true] = ACTIONS(945), - [sym_false] = ACTIONS(945), - [sym_character_literal] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), - [sym_null_literal] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_LT] = ACTIONS(943), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_final] = ACTIONS(945), - [anon_sym_BANG] = ACTIONS(943), - [anon_sym_TILDE] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_new] = ACTIONS(945), - [anon_sym_class] = ACTIONS(945), - [anon_sym_switch] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_case] = ACTIONS(945), - [anon_sym_default] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(943), - [anon_sym_assert] = ACTIONS(945), - [anon_sym_do] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_yield] = ACTIONS(945), - [anon_sym_synchronized] = ACTIONS(945), - [anon_sym_throw] = ACTIONS(945), - [anon_sym_try] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_else] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_AT] = ACTIONS(945), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_static] = ACTIONS(945), - [anon_sym_with] = ACTIONS(945), - [anon_sym_package] = ACTIONS(945), - [anon_sym_import] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(945), - [anon_sym_public] = ACTIONS(945), - [anon_sym_protected] = ACTIONS(945), - [anon_sym_private] = ACTIONS(945), - [anon_sym_abstract] = ACTIONS(945), - [anon_sym_strictfp] = ACTIONS(945), - [anon_sym_native] = ACTIONS(945), - [anon_sym_transient] = ACTIONS(945), - [anon_sym_volatile] = ACTIONS(945), - [anon_sym_sealed] = ACTIONS(945), - [anon_sym_non_DASHsealed] = ACTIONS(943), - [anon_sym_record] = ACTIONS(945), - [anon_sym_ATinterface] = ACTIONS(943), - [anon_sym_interface] = ACTIONS(945), - [anon_sym_byte] = ACTIONS(945), - [anon_sym_short] = ACTIONS(945), - [anon_sym_int] = ACTIONS(945), - [anon_sym_long] = ACTIONS(945), - [anon_sym_char] = ACTIONS(945), - [anon_sym_float] = ACTIONS(945), - [anon_sym_double] = ACTIONS(945), - [sym_boolean_type] = ACTIONS(945), - [sym_void_type] = ACTIONS(945), - [sym_this] = ACTIONS(945), - [sym_super] = ACTIONS(945), + [STATE(324)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(569), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(573), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(525), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(947), - [sym_identifier] = ACTIONS(949), - [sym_decimal_integer_literal] = ACTIONS(949), - [sym_hex_integer_literal] = ACTIONS(949), - [sym_octal_integer_literal] = ACTIONS(949), - [sym_binary_integer_literal] = ACTIONS(947), - [sym_decimal_floating_point_literal] = ACTIONS(947), - [sym_hex_floating_point_literal] = ACTIONS(949), - [sym_true] = ACTIONS(949), - [sym_false] = ACTIONS(949), - [sym_character_literal] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(949), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [sym_null_literal] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_final] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(947), - [anon_sym_PLUS_PLUS] = ACTIONS(947), - [anon_sym_DASH_DASH] = ACTIONS(947), - [anon_sym_new] = ACTIONS(949), - [anon_sym_class] = ACTIONS(949), - [anon_sym_switch] = ACTIONS(949), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_case] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_assert] = ACTIONS(949), - [anon_sym_do] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_yield] = ACTIONS(949), - [anon_sym_synchronized] = ACTIONS(949), - [anon_sym_throw] = ACTIONS(949), - [anon_sym_try] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_else] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(949), - [anon_sym_open] = ACTIONS(949), - [anon_sym_module] = ACTIONS(949), - [anon_sym_static] = ACTIONS(949), - [anon_sym_with] = ACTIONS(949), - [anon_sym_package] = ACTIONS(949), - [anon_sym_import] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_public] = ACTIONS(949), - [anon_sym_protected] = ACTIONS(949), - [anon_sym_private] = ACTIONS(949), - [anon_sym_abstract] = ACTIONS(949), - [anon_sym_strictfp] = ACTIONS(949), - [anon_sym_native] = ACTIONS(949), - [anon_sym_transient] = ACTIONS(949), - [anon_sym_volatile] = ACTIONS(949), - [anon_sym_sealed] = ACTIONS(949), - [anon_sym_non_DASHsealed] = ACTIONS(947), - [anon_sym_record] = ACTIONS(949), - [anon_sym_ATinterface] = ACTIONS(947), - [anon_sym_interface] = ACTIONS(949), - [anon_sym_byte] = ACTIONS(949), - [anon_sym_short] = ACTIONS(949), - [anon_sym_int] = ACTIONS(949), - [anon_sym_long] = ACTIONS(949), - [anon_sym_char] = ACTIONS(949), - [anon_sym_float] = ACTIONS(949), - [anon_sym_double] = ACTIONS(949), - [sym_boolean_type] = ACTIONS(949), - [sym_void_type] = ACTIONS(949), - [sym_this] = ACTIONS(949), - [sym_super] = ACTIONS(949), + [STATE(325)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(583), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(951), - [sym_identifier] = ACTIONS(953), - [sym_decimal_integer_literal] = ACTIONS(953), - [sym_hex_integer_literal] = ACTIONS(953), - [sym_octal_integer_literal] = ACTIONS(953), - [sym_binary_integer_literal] = ACTIONS(951), - [sym_decimal_floating_point_literal] = ACTIONS(951), - [sym_hex_floating_point_literal] = ACTIONS(953), - [sym_true] = ACTIONS(953), - [sym_false] = ACTIONS(953), - [sym_character_literal] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(953), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [sym_null_literal] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_final] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(951), - [anon_sym_PLUS_PLUS] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(951), - [anon_sym_new] = ACTIONS(953), - [anon_sym_class] = ACTIONS(953), - [anon_sym_switch] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_case] = ACTIONS(953), - [anon_sym_default] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_assert] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_yield] = ACTIONS(953), - [anon_sym_synchronized] = ACTIONS(953), - [anon_sym_throw] = ACTIONS(953), - [anon_sym_try] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym_open] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_static] = ACTIONS(953), - [anon_sym_with] = ACTIONS(953), - [anon_sym_package] = ACTIONS(953), - [anon_sym_import] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(953), - [anon_sym_public] = ACTIONS(953), - [anon_sym_protected] = ACTIONS(953), - [anon_sym_private] = ACTIONS(953), - [anon_sym_abstract] = ACTIONS(953), - [anon_sym_strictfp] = ACTIONS(953), - [anon_sym_native] = ACTIONS(953), - [anon_sym_transient] = ACTIONS(953), - [anon_sym_volatile] = ACTIONS(953), - [anon_sym_sealed] = ACTIONS(953), - [anon_sym_non_DASHsealed] = ACTIONS(951), - [anon_sym_record] = ACTIONS(953), - [anon_sym_ATinterface] = ACTIONS(951), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_byte] = ACTIONS(953), - [anon_sym_short] = ACTIONS(953), - [anon_sym_int] = ACTIONS(953), - [anon_sym_long] = ACTIONS(953), - [anon_sym_char] = ACTIONS(953), - [anon_sym_float] = ACTIONS(953), - [anon_sym_double] = ACTIONS(953), - [sym_boolean_type] = ACTIONS(953), - [sym_void_type] = ACTIONS(953), - [sym_this] = ACTIONS(953), - [sym_super] = ACTIONS(953), + [STATE(326)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(594), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [328] = { - [ts_builtin_sym_end] = ACTIONS(955), - [sym_identifier] = ACTIONS(957), - [sym_decimal_integer_literal] = ACTIONS(957), - [sym_hex_integer_literal] = ACTIONS(957), - [sym_octal_integer_literal] = ACTIONS(957), - [sym_binary_integer_literal] = ACTIONS(955), - [sym_decimal_floating_point_literal] = ACTIONS(955), - [sym_hex_floating_point_literal] = ACTIONS(957), - [sym_true] = ACTIONS(957), - [sym_false] = ACTIONS(957), - [sym_character_literal] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(957), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [sym_null_literal] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_final] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_TILDE] = ACTIONS(955), - [anon_sym_PLUS_PLUS] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(955), - [anon_sym_new] = ACTIONS(957), - [anon_sym_class] = ACTIONS(957), - [anon_sym_switch] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_case] = ACTIONS(957), - [anon_sym_default] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_assert] = ACTIONS(957), - [anon_sym_do] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [anon_sym_break] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_return] = ACTIONS(957), - [anon_sym_yield] = ACTIONS(957), - [anon_sym_synchronized] = ACTIONS(957), - [anon_sym_throw] = ACTIONS(957), - [anon_sym_try] = ACTIONS(957), - [anon_sym_if] = ACTIONS(957), - [anon_sym_else] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(957), - [anon_sym_open] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_static] = ACTIONS(957), - [anon_sym_with] = ACTIONS(957), - [anon_sym_package] = ACTIONS(957), - [anon_sym_import] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_abstract] = ACTIONS(957), - [anon_sym_strictfp] = ACTIONS(957), - [anon_sym_native] = ACTIONS(957), - [anon_sym_transient] = ACTIONS(957), - [anon_sym_volatile] = ACTIONS(957), - [anon_sym_sealed] = ACTIONS(957), - [anon_sym_non_DASHsealed] = ACTIONS(955), - [anon_sym_record] = ACTIONS(957), - [anon_sym_ATinterface] = ACTIONS(955), - [anon_sym_interface] = ACTIONS(957), - [anon_sym_byte] = ACTIONS(957), - [anon_sym_short] = ACTIONS(957), - [anon_sym_int] = ACTIONS(957), - [anon_sym_long] = ACTIONS(957), - [anon_sym_char] = ACTIONS(957), - [anon_sym_float] = ACTIONS(957), - [anon_sym_double] = ACTIONS(957), - [sym_boolean_type] = ACTIONS(957), - [sym_void_type] = ACTIONS(957), - [sym_this] = ACTIONS(957), - [sym_super] = ACTIONS(957), + [STATE(327)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(584), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(959), - [sym_identifier] = ACTIONS(961), - [sym_decimal_integer_literal] = ACTIONS(961), - [sym_hex_integer_literal] = ACTIONS(961), - [sym_octal_integer_literal] = ACTIONS(961), - [sym_binary_integer_literal] = ACTIONS(959), - [sym_decimal_floating_point_literal] = ACTIONS(959), - [sym_hex_floating_point_literal] = ACTIONS(961), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - [sym_character_literal] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(961), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [sym_null_literal] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_final] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_new] = ACTIONS(961), - [anon_sym_class] = ACTIONS(961), - [anon_sym_switch] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_case] = ACTIONS(961), - [anon_sym_default] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_assert] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_yield] = ACTIONS(961), - [anon_sym_synchronized] = ACTIONS(961), - [anon_sym_throw] = ACTIONS(961), - [anon_sym_try] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(961), - [anon_sym_open] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_static] = ACTIONS(961), - [anon_sym_with] = ACTIONS(961), - [anon_sym_package] = ACTIONS(961), - [anon_sym_import] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [anon_sym_public] = ACTIONS(961), - [anon_sym_protected] = ACTIONS(961), - [anon_sym_private] = ACTIONS(961), - [anon_sym_abstract] = ACTIONS(961), - [anon_sym_strictfp] = ACTIONS(961), - [anon_sym_native] = ACTIONS(961), - [anon_sym_transient] = ACTIONS(961), - [anon_sym_volatile] = ACTIONS(961), - [anon_sym_sealed] = ACTIONS(961), - [anon_sym_non_DASHsealed] = ACTIONS(959), - [anon_sym_record] = ACTIONS(961), - [anon_sym_ATinterface] = ACTIONS(959), - [anon_sym_interface] = ACTIONS(961), - [anon_sym_byte] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_int] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_char] = ACTIONS(961), - [anon_sym_float] = ACTIONS(961), - [anon_sym_double] = ACTIONS(961), - [sym_boolean_type] = ACTIONS(961), - [sym_void_type] = ACTIONS(961), - [sym_this] = ACTIONS(961), - [sym_super] = ACTIONS(961), + [STATE(328)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(671), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(963), - [sym_identifier] = ACTIONS(965), - [sym_decimal_integer_literal] = ACTIONS(965), - [sym_hex_integer_literal] = ACTIONS(965), - [sym_octal_integer_literal] = ACTIONS(965), - [sym_binary_integer_literal] = ACTIONS(963), - [sym_decimal_floating_point_literal] = ACTIONS(963), - [sym_hex_floating_point_literal] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [sym_character_literal] = ACTIONS(963), - [anon_sym_DQUOTE] = ACTIONS(965), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [sym_null_literal] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_final] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_new] = ACTIONS(965), - [anon_sym_class] = ACTIONS(965), - [anon_sym_switch] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_case] = ACTIONS(965), - [anon_sym_default] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_assert] = ACTIONS(965), - [anon_sym_do] = ACTIONS(965), - [anon_sym_while] = ACTIONS(965), - [anon_sym_break] = ACTIONS(965), - [anon_sym_continue] = ACTIONS(965), - [anon_sym_return] = ACTIONS(965), - [anon_sym_yield] = ACTIONS(965), - [anon_sym_synchronized] = ACTIONS(965), - [anon_sym_throw] = ACTIONS(965), - [anon_sym_try] = ACTIONS(965), - [anon_sym_if] = ACTIONS(965), - [anon_sym_else] = ACTIONS(965), - [anon_sym_for] = ACTIONS(965), - [anon_sym_AT] = ACTIONS(965), - [anon_sym_open] = ACTIONS(965), - [anon_sym_module] = ACTIONS(965), - [anon_sym_static] = ACTIONS(965), - [anon_sym_with] = ACTIONS(965), - [anon_sym_package] = ACTIONS(965), - [anon_sym_import] = ACTIONS(965), - [anon_sym_enum] = ACTIONS(965), - [anon_sym_public] = ACTIONS(965), - [anon_sym_protected] = ACTIONS(965), - [anon_sym_private] = ACTIONS(965), - [anon_sym_abstract] = ACTIONS(965), - [anon_sym_strictfp] = ACTIONS(965), - [anon_sym_native] = ACTIONS(965), - [anon_sym_transient] = ACTIONS(965), - [anon_sym_volatile] = ACTIONS(965), - [anon_sym_sealed] = ACTIONS(965), - [anon_sym_non_DASHsealed] = ACTIONS(963), - [anon_sym_record] = ACTIONS(965), - [anon_sym_ATinterface] = ACTIONS(963), - [anon_sym_interface] = ACTIONS(965), - [anon_sym_byte] = ACTIONS(965), - [anon_sym_short] = ACTIONS(965), - [anon_sym_int] = ACTIONS(965), - [anon_sym_long] = ACTIONS(965), - [anon_sym_char] = ACTIONS(965), - [anon_sym_float] = ACTIONS(965), - [anon_sym_double] = ACTIONS(965), - [sym_boolean_type] = ACTIONS(965), - [sym_void_type] = ACTIONS(965), - [sym_this] = ACTIONS(965), - [sym_super] = ACTIONS(965), + [STATE(329)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(585), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [331] = { - [ts_builtin_sym_end] = ACTIONS(967), - [sym_identifier] = ACTIONS(969), - [sym_decimal_integer_literal] = ACTIONS(969), - [sym_hex_integer_literal] = ACTIONS(969), - [sym_octal_integer_literal] = ACTIONS(969), - [sym_binary_integer_literal] = ACTIONS(967), - [sym_decimal_floating_point_literal] = ACTIONS(967), - [sym_hex_floating_point_literal] = ACTIONS(969), - [sym_true] = ACTIONS(969), - [sym_false] = ACTIONS(969), - [sym_character_literal] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(969), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [sym_null_literal] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_LT] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_final] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_TILDE] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(967), - [anon_sym_DASH_DASH] = ACTIONS(967), - [anon_sym_new] = ACTIONS(969), - [anon_sym_class] = ACTIONS(969), - [anon_sym_switch] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_case] = ACTIONS(969), - [anon_sym_default] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_assert] = ACTIONS(969), - [anon_sym_do] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_yield] = ACTIONS(969), - [anon_sym_synchronized] = ACTIONS(969), - [anon_sym_throw] = ACTIONS(969), - [anon_sym_try] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(969), - [anon_sym_open] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_static] = ACTIONS(969), - [anon_sym_with] = ACTIONS(969), - [anon_sym_package] = ACTIONS(969), - [anon_sym_import] = ACTIONS(969), - [anon_sym_enum] = ACTIONS(969), - [anon_sym_public] = ACTIONS(969), - [anon_sym_protected] = ACTIONS(969), - [anon_sym_private] = ACTIONS(969), - [anon_sym_abstract] = ACTIONS(969), - [anon_sym_strictfp] = ACTIONS(969), - [anon_sym_native] = ACTIONS(969), - [anon_sym_transient] = ACTIONS(969), - [anon_sym_volatile] = ACTIONS(969), - [anon_sym_sealed] = ACTIONS(969), - [anon_sym_non_DASHsealed] = ACTIONS(967), - [anon_sym_record] = ACTIONS(969), - [anon_sym_ATinterface] = ACTIONS(967), - [anon_sym_interface] = ACTIONS(969), - [anon_sym_byte] = ACTIONS(969), - [anon_sym_short] = ACTIONS(969), - [anon_sym_int] = ACTIONS(969), - [anon_sym_long] = ACTIONS(969), - [anon_sym_char] = ACTIONS(969), - [anon_sym_float] = ACTIONS(969), - [anon_sym_double] = ACTIONS(969), - [sym_boolean_type] = ACTIONS(969), - [sym_void_type] = ACTIONS(969), - [sym_this] = ACTIONS(969), - [sym_super] = ACTIONS(969), + [STATE(330)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(560), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(971), - [sym_identifier] = ACTIONS(973), - [sym_decimal_integer_literal] = ACTIONS(973), - [sym_hex_integer_literal] = ACTIONS(973), - [sym_octal_integer_literal] = ACTIONS(973), - [sym_binary_integer_literal] = ACTIONS(971), - [sym_decimal_floating_point_literal] = ACTIONS(971), - [sym_hex_floating_point_literal] = ACTIONS(973), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [sym_character_literal] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(973), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [sym_null_literal] = ACTIONS(973), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_final] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_TILDE] = ACTIONS(971), - [anon_sym_PLUS_PLUS] = ACTIONS(971), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_new] = ACTIONS(973), - [anon_sym_class] = ACTIONS(973), - [anon_sym_switch] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_case] = ACTIONS(973), - [anon_sym_default] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_assert] = ACTIONS(973), - [anon_sym_do] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_yield] = ACTIONS(973), - [anon_sym_synchronized] = ACTIONS(973), - [anon_sym_throw] = ACTIONS(973), - [anon_sym_try] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_else] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_AT] = ACTIONS(973), - [anon_sym_open] = ACTIONS(973), - [anon_sym_module] = ACTIONS(973), - [anon_sym_static] = ACTIONS(973), - [anon_sym_with] = ACTIONS(973), - [anon_sym_package] = ACTIONS(973), - [anon_sym_import] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(973), - [anon_sym_public] = ACTIONS(973), - [anon_sym_protected] = ACTIONS(973), - [anon_sym_private] = ACTIONS(973), - [anon_sym_abstract] = ACTIONS(973), - [anon_sym_strictfp] = ACTIONS(973), - [anon_sym_native] = ACTIONS(973), - [anon_sym_transient] = ACTIONS(973), - [anon_sym_volatile] = ACTIONS(973), - [anon_sym_sealed] = ACTIONS(973), - [anon_sym_non_DASHsealed] = ACTIONS(971), - [anon_sym_record] = ACTIONS(973), - [anon_sym_ATinterface] = ACTIONS(971), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_byte] = ACTIONS(973), - [anon_sym_short] = ACTIONS(973), - [anon_sym_int] = ACTIONS(973), - [anon_sym_long] = ACTIONS(973), - [anon_sym_char] = ACTIONS(973), - [anon_sym_float] = ACTIONS(973), - [anon_sym_double] = ACTIONS(973), - [sym_boolean_type] = ACTIONS(973), - [sym_void_type] = ACTIONS(973), - [sym_this] = ACTIONS(973), - [sym_super] = ACTIONS(973), + [STATE(331)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(975), - [sym_identifier] = ACTIONS(977), - [sym_decimal_integer_literal] = ACTIONS(977), - [sym_hex_integer_literal] = ACTIONS(977), - [sym_octal_integer_literal] = ACTIONS(977), - [sym_binary_integer_literal] = ACTIONS(975), - [sym_decimal_floating_point_literal] = ACTIONS(975), - [sym_hex_floating_point_literal] = ACTIONS(977), - [sym_true] = ACTIONS(977), - [sym_false] = ACTIONS(977), - [sym_character_literal] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(977), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [sym_null_literal] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_final] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(975), - [anon_sym_PLUS_PLUS] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(975), - [anon_sym_new] = ACTIONS(977), - [anon_sym_class] = ACTIONS(977), - [anon_sym_switch] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_case] = ACTIONS(977), - [anon_sym_default] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_assert] = ACTIONS(977), - [anon_sym_do] = ACTIONS(977), - [anon_sym_while] = ACTIONS(977), - [anon_sym_break] = ACTIONS(977), - [anon_sym_continue] = ACTIONS(977), - [anon_sym_return] = ACTIONS(977), - [anon_sym_yield] = ACTIONS(977), - [anon_sym_synchronized] = ACTIONS(977), - [anon_sym_throw] = ACTIONS(977), - [anon_sym_try] = ACTIONS(977), - [anon_sym_if] = ACTIONS(977), - [anon_sym_else] = ACTIONS(977), - [anon_sym_for] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(977), - [anon_sym_open] = ACTIONS(977), - [anon_sym_module] = ACTIONS(977), - [anon_sym_static] = ACTIONS(977), - [anon_sym_with] = ACTIONS(977), - [anon_sym_package] = ACTIONS(977), - [anon_sym_import] = ACTIONS(977), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_public] = ACTIONS(977), - [anon_sym_protected] = ACTIONS(977), - [anon_sym_private] = ACTIONS(977), - [anon_sym_abstract] = ACTIONS(977), - [anon_sym_strictfp] = ACTIONS(977), - [anon_sym_native] = ACTIONS(977), - [anon_sym_transient] = ACTIONS(977), - [anon_sym_volatile] = ACTIONS(977), - [anon_sym_sealed] = ACTIONS(977), - [anon_sym_non_DASHsealed] = ACTIONS(975), - [anon_sym_record] = ACTIONS(977), - [anon_sym_ATinterface] = ACTIONS(975), - [anon_sym_interface] = ACTIONS(977), - [anon_sym_byte] = ACTIONS(977), - [anon_sym_short] = ACTIONS(977), - [anon_sym_int] = ACTIONS(977), - [anon_sym_long] = ACTIONS(977), - [anon_sym_char] = ACTIONS(977), - [anon_sym_float] = ACTIONS(977), - [anon_sym_double] = ACTIONS(977), - [sym_boolean_type] = ACTIONS(977), - [sym_void_type] = ACTIONS(977), - [sym_this] = ACTIONS(977), - [sym_super] = ACTIONS(977), + [STATE(332)] = { + [ts_builtin_sym_end] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1163), + [sym_decimal_integer_literal] = ACTIONS(1163), + [sym_hex_integer_literal] = ACTIONS(1163), + [sym_octal_integer_literal] = ACTIONS(1163), + [sym_binary_integer_literal] = ACTIONS(1161), + [sym_decimal_floating_point_literal] = ACTIONS(1161), + [sym_hex_floating_point_literal] = ACTIONS(1163), + [sym_true] = ACTIONS(1163), + [sym_false] = ACTIONS(1163), + [sym_character_literal] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1163), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [sym_null_literal] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_LT] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_final] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_class] = ACTIONS(1163), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_default] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1161), + [anon_sym_assert] = ACTIONS(1163), + [anon_sym_do] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(1163), + [anon_sym_synchronized] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(1163), + [anon_sym_try] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_AT] = ACTIONS(1163), + [anon_sym_open] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_package] = ACTIONS(1163), + [anon_sym_import] = ACTIONS(1163), + [anon_sym_enum] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_abstract] = ACTIONS(1163), + [anon_sym_strictfp] = ACTIONS(1163), + [anon_sym_native] = ACTIONS(1163), + [anon_sym_transient] = ACTIONS(1163), + [anon_sym_volatile] = ACTIONS(1163), + [anon_sym_sealed] = ACTIONS(1163), + [anon_sym_non_DASHsealed] = ACTIONS(1161), + [anon_sym_record] = ACTIONS(1163), + [anon_sym_ATinterface] = ACTIONS(1161), + [anon_sym_interface] = ACTIONS(1163), + [anon_sym_byte] = ACTIONS(1163), + [anon_sym_short] = ACTIONS(1163), + [anon_sym_int] = ACTIONS(1163), + [anon_sym_long] = ACTIONS(1163), + [anon_sym_char] = ACTIONS(1163), + [anon_sym_float] = ACTIONS(1163), + [anon_sym_double] = ACTIONS(1163), + [sym_boolean_type] = ACTIONS(1163), + [sym_void_type] = ACTIONS(1163), + [sym_this] = ACTIONS(1163), + [sym_super] = ACTIONS(1163), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(979), - [sym_identifier] = ACTIONS(981), - [sym_decimal_integer_literal] = ACTIONS(981), - [sym_hex_integer_literal] = ACTIONS(981), - [sym_octal_integer_literal] = ACTIONS(981), - [sym_binary_integer_literal] = ACTIONS(979), - [sym_decimal_floating_point_literal] = ACTIONS(979), - [sym_hex_floating_point_literal] = ACTIONS(981), - [sym_true] = ACTIONS(981), - [sym_false] = ACTIONS(981), - [sym_character_literal] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [sym_null_literal] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_final] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(979), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_new] = ACTIONS(981), - [anon_sym_class] = ACTIONS(981), - [anon_sym_switch] = ACTIONS(981), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_case] = ACTIONS(981), - [anon_sym_default] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_assert] = ACTIONS(981), - [anon_sym_do] = ACTIONS(981), - [anon_sym_while] = ACTIONS(981), - [anon_sym_break] = ACTIONS(981), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_return] = ACTIONS(981), - [anon_sym_yield] = ACTIONS(981), - [anon_sym_synchronized] = ACTIONS(981), - [anon_sym_throw] = ACTIONS(981), - [anon_sym_try] = ACTIONS(981), - [anon_sym_if] = ACTIONS(981), - [anon_sym_else] = ACTIONS(981), - [anon_sym_for] = ACTIONS(981), - [anon_sym_AT] = ACTIONS(981), - [anon_sym_open] = ACTIONS(981), - [anon_sym_module] = ACTIONS(981), - [anon_sym_static] = ACTIONS(981), - [anon_sym_with] = ACTIONS(981), - [anon_sym_package] = ACTIONS(981), - [anon_sym_import] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_public] = ACTIONS(981), - [anon_sym_protected] = ACTIONS(981), - [anon_sym_private] = ACTIONS(981), - [anon_sym_abstract] = ACTIONS(981), - [anon_sym_strictfp] = ACTIONS(981), - [anon_sym_native] = ACTIONS(981), - [anon_sym_transient] = ACTIONS(981), - [anon_sym_volatile] = ACTIONS(981), - [anon_sym_sealed] = ACTIONS(981), - [anon_sym_non_DASHsealed] = ACTIONS(979), - [anon_sym_record] = ACTIONS(981), - [anon_sym_ATinterface] = ACTIONS(979), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_byte] = ACTIONS(981), - [anon_sym_short] = ACTIONS(981), - [anon_sym_int] = ACTIONS(981), - [anon_sym_long] = ACTIONS(981), - [anon_sym_char] = ACTIONS(981), - [anon_sym_float] = ACTIONS(981), - [anon_sym_double] = ACTIONS(981), - [sym_boolean_type] = ACTIONS(981), - [sym_void_type] = ACTIONS(981), - [sym_this] = ACTIONS(981), - [sym_super] = ACTIONS(981), + [STATE(333)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(607), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(983), - [sym_identifier] = ACTIONS(985), - [sym_decimal_integer_literal] = ACTIONS(985), - [sym_hex_integer_literal] = ACTIONS(985), - [sym_octal_integer_literal] = ACTIONS(985), - [sym_binary_integer_literal] = ACTIONS(983), - [sym_decimal_floating_point_literal] = ACTIONS(983), - [sym_hex_floating_point_literal] = ACTIONS(985), - [sym_true] = ACTIONS(985), - [sym_false] = ACTIONS(985), - [sym_character_literal] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [sym_null_literal] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_final] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(983), - [anon_sym_PLUS_PLUS] = ACTIONS(983), - [anon_sym_DASH_DASH] = ACTIONS(983), - [anon_sym_new] = ACTIONS(985), - [anon_sym_class] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_case] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_assert] = ACTIONS(985), - [anon_sym_do] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_yield] = ACTIONS(985), - [anon_sym_synchronized] = ACTIONS(985), - [anon_sym_throw] = ACTIONS(985), - [anon_sym_try] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_else] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(985), - [anon_sym_open] = ACTIONS(985), - [anon_sym_module] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_with] = ACTIONS(985), - [anon_sym_package] = ACTIONS(985), - [anon_sym_import] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_public] = ACTIONS(985), - [anon_sym_protected] = ACTIONS(985), - [anon_sym_private] = ACTIONS(985), - [anon_sym_abstract] = ACTIONS(985), - [anon_sym_strictfp] = ACTIONS(985), - [anon_sym_native] = ACTIONS(985), - [anon_sym_transient] = ACTIONS(985), - [anon_sym_volatile] = ACTIONS(985), - [anon_sym_sealed] = ACTIONS(985), - [anon_sym_non_DASHsealed] = ACTIONS(983), - [anon_sym_record] = ACTIONS(985), - [anon_sym_ATinterface] = ACTIONS(983), - [anon_sym_interface] = ACTIONS(985), - [anon_sym_byte] = ACTIONS(985), - [anon_sym_short] = ACTIONS(985), - [anon_sym_int] = ACTIONS(985), - [anon_sym_long] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_float] = ACTIONS(985), - [anon_sym_double] = ACTIONS(985), - [sym_boolean_type] = ACTIONS(985), - [sym_void_type] = ACTIONS(985), - [sym_this] = ACTIONS(985), - [sym_super] = ACTIONS(985), + [STATE(334)] = { + [ts_builtin_sym_end] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1167), + [sym_decimal_integer_literal] = ACTIONS(1167), + [sym_hex_integer_literal] = ACTIONS(1167), + [sym_octal_integer_literal] = ACTIONS(1167), + [sym_binary_integer_literal] = ACTIONS(1165), + [sym_decimal_floating_point_literal] = ACTIONS(1165), + [sym_hex_floating_point_literal] = ACTIONS(1167), + [sym_true] = ACTIONS(1167), + [sym_false] = ACTIONS(1167), + [sym_character_literal] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [sym_null_literal] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_final] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_class] = ACTIONS(1167), + [anon_sym_switch] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1165), + [anon_sym_assert] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_yield] = ACTIONS(1167), + [anon_sym_synchronized] = ACTIONS(1167), + [anon_sym_throw] = ACTIONS(1167), + [anon_sym_try] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_AT] = ACTIONS(1167), + [anon_sym_open] = ACTIONS(1167), + [anon_sym_module] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1167), + [anon_sym_package] = ACTIONS(1167), + [anon_sym_import] = ACTIONS(1167), + [anon_sym_enum] = ACTIONS(1167), + [anon_sym_public] = ACTIONS(1167), + [anon_sym_protected] = ACTIONS(1167), + [anon_sym_private] = ACTIONS(1167), + [anon_sym_abstract] = ACTIONS(1167), + [anon_sym_strictfp] = ACTIONS(1167), + [anon_sym_native] = ACTIONS(1167), + [anon_sym_transient] = ACTIONS(1167), + [anon_sym_volatile] = ACTIONS(1167), + [anon_sym_sealed] = ACTIONS(1167), + [anon_sym_non_DASHsealed] = ACTIONS(1165), + [anon_sym_record] = ACTIONS(1167), + [anon_sym_ATinterface] = ACTIONS(1165), + [anon_sym_interface] = ACTIONS(1167), + [anon_sym_byte] = ACTIONS(1167), + [anon_sym_short] = ACTIONS(1167), + [anon_sym_int] = ACTIONS(1167), + [anon_sym_long] = ACTIONS(1167), + [anon_sym_char] = ACTIONS(1167), + [anon_sym_float] = ACTIONS(1167), + [anon_sym_double] = ACTIONS(1167), + [sym_boolean_type] = ACTIONS(1167), + [sym_void_type] = ACTIONS(1167), + [sym_this] = ACTIONS(1167), + [sym_super] = ACTIONS(1167), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(566), - [sym_identifier] = ACTIONS(568), - [sym_decimal_integer_literal] = ACTIONS(568), - [sym_hex_integer_literal] = ACTIONS(568), - [sym_octal_integer_literal] = ACTIONS(568), - [sym_binary_integer_literal] = ACTIONS(566), - [sym_decimal_floating_point_literal] = ACTIONS(566), - [sym_hex_floating_point_literal] = ACTIONS(568), - [sym_true] = ACTIONS(568), - [sym_false] = ACTIONS(568), - [sym_character_literal] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [sym_null_literal] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_final] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(566), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_DASH_DASH] = ACTIONS(566), - [anon_sym_new] = ACTIONS(568), - [anon_sym_class] = ACTIONS(568), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_assert] = ACTIONS(568), - [anon_sym_do] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_yield] = ACTIONS(568), - [anon_sym_synchronized] = ACTIONS(568), - [anon_sym_throw] = ACTIONS(568), - [anon_sym_try] = ACTIONS(568), - [anon_sym_if] = ACTIONS(568), - [anon_sym_else] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(568), - [anon_sym_open] = ACTIONS(568), - [anon_sym_module] = ACTIONS(568), - [anon_sym_static] = ACTIONS(568), - [anon_sym_with] = ACTIONS(568), - [anon_sym_package] = ACTIONS(568), - [anon_sym_import] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_public] = ACTIONS(568), - [anon_sym_protected] = ACTIONS(568), - [anon_sym_private] = ACTIONS(568), - [anon_sym_abstract] = ACTIONS(568), - [anon_sym_strictfp] = ACTIONS(568), - [anon_sym_native] = ACTIONS(568), - [anon_sym_transient] = ACTIONS(568), - [anon_sym_volatile] = ACTIONS(568), - [anon_sym_sealed] = ACTIONS(568), - [anon_sym_non_DASHsealed] = ACTIONS(566), - [anon_sym_record] = ACTIONS(568), - [anon_sym_ATinterface] = ACTIONS(566), - [anon_sym_interface] = ACTIONS(568), - [anon_sym_byte] = ACTIONS(568), - [anon_sym_short] = ACTIONS(568), - [anon_sym_int] = ACTIONS(568), - [anon_sym_long] = ACTIONS(568), - [anon_sym_char] = ACTIONS(568), - [anon_sym_float] = ACTIONS(568), - [anon_sym_double] = ACTIONS(568), - [sym_boolean_type] = ACTIONS(568), - [sym_void_type] = ACTIONS(568), - [sym_this] = ACTIONS(568), - [sym_super] = ACTIONS(568), + [STATE(335)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(708), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(987), - [sym_identifier] = ACTIONS(989), - [sym_decimal_integer_literal] = ACTIONS(989), - [sym_hex_integer_literal] = ACTIONS(989), - [sym_octal_integer_literal] = ACTIONS(989), - [sym_binary_integer_literal] = ACTIONS(987), - [sym_decimal_floating_point_literal] = ACTIONS(987), - [sym_hex_floating_point_literal] = ACTIONS(989), - [sym_true] = ACTIONS(989), - [sym_false] = ACTIONS(989), - [sym_character_literal] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [sym_null_literal] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_final] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_new] = ACTIONS(989), - [anon_sym_class] = ACTIONS(989), - [anon_sym_switch] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_case] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_assert] = ACTIONS(989), - [anon_sym_do] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(989), - [anon_sym_synchronized] = ACTIONS(989), - [anon_sym_throw] = ACTIONS(989), - [anon_sym_try] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_else] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_AT] = ACTIONS(989), - [anon_sym_open] = ACTIONS(989), - [anon_sym_module] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_with] = ACTIONS(989), - [anon_sym_package] = ACTIONS(989), - [anon_sym_import] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_public] = ACTIONS(989), - [anon_sym_protected] = ACTIONS(989), - [anon_sym_private] = ACTIONS(989), - [anon_sym_abstract] = ACTIONS(989), - [anon_sym_strictfp] = ACTIONS(989), - [anon_sym_native] = ACTIONS(989), - [anon_sym_transient] = ACTIONS(989), - [anon_sym_volatile] = ACTIONS(989), - [anon_sym_sealed] = ACTIONS(989), - [anon_sym_non_DASHsealed] = ACTIONS(987), - [anon_sym_record] = ACTIONS(989), - [anon_sym_ATinterface] = ACTIONS(987), - [anon_sym_interface] = ACTIONS(989), - [anon_sym_byte] = ACTIONS(989), - [anon_sym_short] = ACTIONS(989), - [anon_sym_int] = ACTIONS(989), - [anon_sym_long] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_float] = ACTIONS(989), - [anon_sym_double] = ACTIONS(989), - [sym_boolean_type] = ACTIONS(989), - [sym_void_type] = ACTIONS(989), - [sym_this] = ACTIONS(989), - [sym_super] = ACTIONS(989), + [STATE(336)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(666), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(991), - [sym_identifier] = ACTIONS(993), - [sym_decimal_integer_literal] = ACTIONS(993), - [sym_hex_integer_literal] = ACTIONS(993), - [sym_octal_integer_literal] = ACTIONS(993), - [sym_binary_integer_literal] = ACTIONS(991), - [sym_decimal_floating_point_literal] = ACTIONS(991), - [sym_hex_floating_point_literal] = ACTIONS(993), - [sym_true] = ACTIONS(993), - [sym_false] = ACTIONS(993), - [sym_character_literal] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(993), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [sym_null_literal] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_final] = ACTIONS(993), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(991), - [anon_sym_DASH_DASH] = ACTIONS(991), - [anon_sym_new] = ACTIONS(993), - [anon_sym_class] = ACTIONS(993), - [anon_sym_switch] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_case] = ACTIONS(993), - [anon_sym_default] = ACTIONS(993), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_assert] = ACTIONS(993), - [anon_sym_do] = ACTIONS(993), - [anon_sym_while] = ACTIONS(993), - [anon_sym_break] = ACTIONS(993), - [anon_sym_continue] = ACTIONS(993), - [anon_sym_return] = ACTIONS(993), - [anon_sym_yield] = ACTIONS(993), - [anon_sym_synchronized] = ACTIONS(993), - [anon_sym_throw] = ACTIONS(993), - [anon_sym_try] = ACTIONS(993), - [anon_sym_if] = ACTIONS(993), - [anon_sym_else] = ACTIONS(993), - [anon_sym_for] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(993), - [anon_sym_open] = ACTIONS(993), - [anon_sym_module] = ACTIONS(993), - [anon_sym_static] = ACTIONS(993), - [anon_sym_with] = ACTIONS(993), - [anon_sym_package] = ACTIONS(993), - [anon_sym_import] = ACTIONS(993), - [anon_sym_enum] = ACTIONS(993), - [anon_sym_public] = ACTIONS(993), - [anon_sym_protected] = ACTIONS(993), - [anon_sym_private] = ACTIONS(993), - [anon_sym_abstract] = ACTIONS(993), - [anon_sym_strictfp] = ACTIONS(993), - [anon_sym_native] = ACTIONS(993), - [anon_sym_transient] = ACTIONS(993), - [anon_sym_volatile] = ACTIONS(993), - [anon_sym_sealed] = ACTIONS(993), - [anon_sym_non_DASHsealed] = ACTIONS(991), - [anon_sym_record] = ACTIONS(993), - [anon_sym_ATinterface] = ACTIONS(991), - [anon_sym_interface] = ACTIONS(993), - [anon_sym_byte] = ACTIONS(993), - [anon_sym_short] = ACTIONS(993), - [anon_sym_int] = ACTIONS(993), - [anon_sym_long] = ACTIONS(993), - [anon_sym_char] = ACTIONS(993), - [anon_sym_float] = ACTIONS(993), - [anon_sym_double] = ACTIONS(993), - [sym_boolean_type] = ACTIONS(993), - [sym_void_type] = ACTIONS(993), - [sym_this] = ACTIONS(993), - [sym_super] = ACTIONS(993), + [STATE(337)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(614), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(995), - [sym_identifier] = ACTIONS(997), - [sym_decimal_integer_literal] = ACTIONS(997), - [sym_hex_integer_literal] = ACTIONS(997), - [sym_octal_integer_literal] = ACTIONS(997), - [sym_binary_integer_literal] = ACTIONS(995), - [sym_decimal_floating_point_literal] = ACTIONS(995), - [sym_hex_floating_point_literal] = ACTIONS(997), - [sym_true] = ACTIONS(997), - [sym_false] = ACTIONS(997), - [sym_character_literal] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(995), - [sym_null_literal] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(995), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_final] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(995), - [anon_sym_DASH_DASH] = ACTIONS(995), - [anon_sym_new] = ACTIONS(997), - [anon_sym_class] = ACTIONS(997), - [anon_sym_switch] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(995), - [anon_sym_case] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(995), - [anon_sym_assert] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_yield] = ACTIONS(997), - [anon_sym_synchronized] = ACTIONS(997), - [anon_sym_throw] = ACTIONS(997), - [anon_sym_try] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_else] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(997), - [anon_sym_open] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_with] = ACTIONS(997), - [anon_sym_package] = ACTIONS(997), - [anon_sym_import] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_public] = ACTIONS(997), - [anon_sym_protected] = ACTIONS(997), - [anon_sym_private] = ACTIONS(997), - [anon_sym_abstract] = ACTIONS(997), - [anon_sym_strictfp] = ACTIONS(997), - [anon_sym_native] = ACTIONS(997), - [anon_sym_transient] = ACTIONS(997), - [anon_sym_volatile] = ACTIONS(997), - [anon_sym_sealed] = ACTIONS(997), - [anon_sym_non_DASHsealed] = ACTIONS(995), - [anon_sym_record] = ACTIONS(997), - [anon_sym_ATinterface] = ACTIONS(995), - [anon_sym_interface] = ACTIONS(997), - [anon_sym_byte] = ACTIONS(997), - [anon_sym_short] = ACTIONS(997), - [anon_sym_int] = ACTIONS(997), - [anon_sym_long] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_float] = ACTIONS(997), - [anon_sym_double] = ACTIONS(997), - [sym_boolean_type] = ACTIONS(997), - [sym_void_type] = ACTIONS(997), - [sym_this] = ACTIONS(997), - [sym_super] = ACTIONS(997), + [STATE(338)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(608), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(999), - [sym_identifier] = ACTIONS(1001), - [sym_decimal_integer_literal] = ACTIONS(1001), - [sym_hex_integer_literal] = ACTIONS(1001), - [sym_octal_integer_literal] = ACTIONS(1001), - [sym_binary_integer_literal] = ACTIONS(999), - [sym_decimal_floating_point_literal] = ACTIONS(999), - [sym_hex_floating_point_literal] = ACTIONS(1001), - [sym_true] = ACTIONS(1001), - [sym_false] = ACTIONS(1001), - [sym_character_literal] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(1001), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [sym_null_literal] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_final] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_new] = ACTIONS(1001), - [anon_sym_class] = ACTIONS(1001), - [anon_sym_switch] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_case] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_assert] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1001), - [anon_sym_synchronized] = ACTIONS(1001), - [anon_sym_throw] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_else] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(1001), - [anon_sym_open] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_with] = ACTIONS(1001), - [anon_sym_package] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [anon_sym_public] = ACTIONS(1001), - [anon_sym_protected] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1001), - [anon_sym_abstract] = ACTIONS(1001), - [anon_sym_strictfp] = ACTIONS(1001), - [anon_sym_native] = ACTIONS(1001), - [anon_sym_transient] = ACTIONS(1001), - [anon_sym_volatile] = ACTIONS(1001), - [anon_sym_sealed] = ACTIONS(1001), - [anon_sym_non_DASHsealed] = ACTIONS(999), - [anon_sym_record] = ACTIONS(1001), - [anon_sym_ATinterface] = ACTIONS(999), - [anon_sym_interface] = ACTIONS(1001), - [anon_sym_byte] = ACTIONS(1001), - [anon_sym_short] = ACTIONS(1001), - [anon_sym_int] = ACTIONS(1001), - [anon_sym_long] = ACTIONS(1001), - [anon_sym_char] = ACTIONS(1001), - [anon_sym_float] = ACTIONS(1001), - [anon_sym_double] = ACTIONS(1001), - [sym_boolean_type] = ACTIONS(1001), - [sym_void_type] = ACTIONS(1001), - [sym_this] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), + [STATE(339)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(591), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1003), - [sym_identifier] = ACTIONS(1005), - [sym_decimal_integer_literal] = ACTIONS(1005), - [sym_hex_integer_literal] = ACTIONS(1005), - [sym_octal_integer_literal] = ACTIONS(1005), - [sym_binary_integer_literal] = ACTIONS(1003), - [sym_decimal_floating_point_literal] = ACTIONS(1003), - [sym_hex_floating_point_literal] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [sym_character_literal] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1005), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [sym_null_literal] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_final] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_TILDE] = ACTIONS(1003), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_case] = ACTIONS(1005), - [anon_sym_default] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_assert] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_synchronized] = ACTIONS(1005), - [anon_sym_throw] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_open] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_static] = ACTIONS(1005), - [anon_sym_with] = ACTIONS(1005), - [anon_sym_package] = ACTIONS(1005), - [anon_sym_import] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1005), - [anon_sym_public] = ACTIONS(1005), - [anon_sym_protected] = ACTIONS(1005), - [anon_sym_private] = ACTIONS(1005), - [anon_sym_abstract] = ACTIONS(1005), - [anon_sym_strictfp] = ACTIONS(1005), - [anon_sym_native] = ACTIONS(1005), - [anon_sym_transient] = ACTIONS(1005), - [anon_sym_volatile] = ACTIONS(1005), - [anon_sym_sealed] = ACTIONS(1005), - [anon_sym_non_DASHsealed] = ACTIONS(1003), - [anon_sym_record] = ACTIONS(1005), - [anon_sym_ATinterface] = ACTIONS(1003), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_byte] = ACTIONS(1005), - [anon_sym_short] = ACTIONS(1005), - [anon_sym_int] = ACTIONS(1005), - [anon_sym_long] = ACTIONS(1005), - [anon_sym_char] = ACTIONS(1005), - [anon_sym_float] = ACTIONS(1005), - [anon_sym_double] = ACTIONS(1005), - [sym_boolean_type] = ACTIONS(1005), - [sym_void_type] = ACTIONS(1005), - [sym_this] = ACTIONS(1005), - [sym_super] = ACTIONS(1005), + [STATE(340)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(587), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1007), - [sym_identifier] = ACTIONS(1009), - [sym_decimal_integer_literal] = ACTIONS(1009), - [sym_hex_integer_literal] = ACTIONS(1009), - [sym_octal_integer_literal] = ACTIONS(1009), - [sym_binary_integer_literal] = ACTIONS(1007), - [sym_decimal_floating_point_literal] = ACTIONS(1007), - [sym_hex_floating_point_literal] = ACTIONS(1009), - [sym_true] = ACTIONS(1009), - [sym_false] = ACTIONS(1009), - [sym_character_literal] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1009), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [sym_null_literal] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1009), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_final] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1007), - [anon_sym_PLUS_PLUS] = ACTIONS(1007), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_new] = ACTIONS(1009), - [anon_sym_class] = ACTIONS(1009), - [anon_sym_switch] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_case] = ACTIONS(1009), - [anon_sym_default] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_assert] = ACTIONS(1009), - [anon_sym_do] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_yield] = ACTIONS(1009), - [anon_sym_synchronized] = ACTIONS(1009), - [anon_sym_throw] = ACTIONS(1009), - [anon_sym_try] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_else] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1009), - [anon_sym_open] = ACTIONS(1009), - [anon_sym_module] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1009), - [anon_sym_with] = ACTIONS(1009), - [anon_sym_package] = ACTIONS(1009), - [anon_sym_import] = ACTIONS(1009), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_public] = ACTIONS(1009), - [anon_sym_protected] = ACTIONS(1009), - [anon_sym_private] = ACTIONS(1009), - [anon_sym_abstract] = ACTIONS(1009), - [anon_sym_strictfp] = ACTIONS(1009), - [anon_sym_native] = ACTIONS(1009), - [anon_sym_transient] = ACTIONS(1009), - [anon_sym_volatile] = ACTIONS(1009), - [anon_sym_sealed] = ACTIONS(1009), - [anon_sym_non_DASHsealed] = ACTIONS(1007), - [anon_sym_record] = ACTIONS(1009), - [anon_sym_ATinterface] = ACTIONS(1007), - [anon_sym_interface] = ACTIONS(1009), - [anon_sym_byte] = ACTIONS(1009), - [anon_sym_short] = ACTIONS(1009), - [anon_sym_int] = ACTIONS(1009), - [anon_sym_long] = ACTIONS(1009), - [anon_sym_char] = ACTIONS(1009), - [anon_sym_float] = ACTIONS(1009), - [anon_sym_double] = ACTIONS(1009), - [sym_boolean_type] = ACTIONS(1009), - [sym_void_type] = ACTIONS(1009), - [sym_this] = ACTIONS(1009), - [sym_super] = ACTIONS(1009), + [STATE(341)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(588), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1013), - [sym_decimal_integer_literal] = ACTIONS(1013), - [sym_hex_integer_literal] = ACTIONS(1013), - [sym_octal_integer_literal] = ACTIONS(1013), - [sym_binary_integer_literal] = ACTIONS(1011), - [sym_decimal_floating_point_literal] = ACTIONS(1011), - [sym_hex_floating_point_literal] = ACTIONS(1013), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_character_literal] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [sym_null_literal] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_final] = ACTIONS(1013), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_TILDE] = ACTIONS(1011), - [anon_sym_PLUS_PLUS] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1013), - [anon_sym_class] = ACTIONS(1013), - [anon_sym_switch] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_case] = ACTIONS(1013), - [anon_sym_default] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_assert] = ACTIONS(1013), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1013), - [anon_sym_break] = ACTIONS(1013), - [anon_sym_continue] = ACTIONS(1013), - [anon_sym_return] = ACTIONS(1013), - [anon_sym_yield] = ACTIONS(1013), - [anon_sym_synchronized] = ACTIONS(1013), - [anon_sym_throw] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1013), - [anon_sym_else] = ACTIONS(1013), - [anon_sym_for] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym_open] = ACTIONS(1013), - [anon_sym_module] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1013), - [anon_sym_with] = ACTIONS(1013), - [anon_sym_package] = ACTIONS(1013), - [anon_sym_import] = ACTIONS(1013), - [anon_sym_enum] = ACTIONS(1013), - [anon_sym_public] = ACTIONS(1013), - [anon_sym_protected] = ACTIONS(1013), - [anon_sym_private] = ACTIONS(1013), - [anon_sym_abstract] = ACTIONS(1013), - [anon_sym_strictfp] = ACTIONS(1013), - [anon_sym_native] = ACTIONS(1013), - [anon_sym_transient] = ACTIONS(1013), - [anon_sym_volatile] = ACTIONS(1013), - [anon_sym_sealed] = ACTIONS(1013), - [anon_sym_non_DASHsealed] = ACTIONS(1011), - [anon_sym_record] = ACTIONS(1013), - [anon_sym_ATinterface] = ACTIONS(1011), - [anon_sym_interface] = ACTIONS(1013), - [anon_sym_byte] = ACTIONS(1013), - [anon_sym_short] = ACTIONS(1013), - [anon_sym_int] = ACTIONS(1013), - [anon_sym_long] = ACTIONS(1013), - [anon_sym_char] = ACTIONS(1013), - [anon_sym_float] = ACTIONS(1013), - [anon_sym_double] = ACTIONS(1013), - [sym_boolean_type] = ACTIONS(1013), - [sym_void_type] = ACTIONS(1013), - [sym_this] = ACTIONS(1013), - [sym_super] = ACTIONS(1013), + [STATE(342)] = { + [ts_builtin_sym_end] = ACTIONS(1157), + [sym_identifier] = ACTIONS(1155), + [sym_decimal_integer_literal] = ACTIONS(1155), + [sym_hex_integer_literal] = ACTIONS(1155), + [sym_octal_integer_literal] = ACTIONS(1155), + [sym_binary_integer_literal] = ACTIONS(1157), + [sym_decimal_floating_point_literal] = ACTIONS(1157), + [sym_hex_floating_point_literal] = ACTIONS(1155), + [sym_true] = ACTIONS(1155), + [sym_false] = ACTIONS(1155), + [sym_character_literal] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1155), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1157), + [sym_null_literal] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_final] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_class] = ACTIONS(1155), + [anon_sym_switch] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_default] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym_assert] = ACTIONS(1155), + [anon_sym_do] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1155), + [anon_sym_synchronized] = ACTIONS(1155), + [anon_sym_throw] = ACTIONS(1155), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_open] = ACTIONS(1155), + [anon_sym_module] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1155), + [anon_sym_package] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(1155), + [anon_sym_enum] = ACTIONS(1155), + [anon_sym_public] = ACTIONS(1155), + [anon_sym_protected] = ACTIONS(1155), + [anon_sym_private] = ACTIONS(1155), + [anon_sym_abstract] = ACTIONS(1155), + [anon_sym_strictfp] = ACTIONS(1155), + [anon_sym_native] = ACTIONS(1155), + [anon_sym_transient] = ACTIONS(1155), + [anon_sym_volatile] = ACTIONS(1155), + [anon_sym_sealed] = ACTIONS(1155), + [anon_sym_non_DASHsealed] = ACTIONS(1157), + [anon_sym_record] = ACTIONS(1155), + [anon_sym_ATinterface] = ACTIONS(1157), + [anon_sym_interface] = ACTIONS(1155), + [anon_sym_byte] = ACTIONS(1155), + [anon_sym_short] = ACTIONS(1155), + [anon_sym_int] = ACTIONS(1155), + [anon_sym_long] = ACTIONS(1155), + [anon_sym_char] = ACTIONS(1155), + [anon_sym_float] = ACTIONS(1155), + [anon_sym_double] = ACTIONS(1155), + [sym_boolean_type] = ACTIONS(1155), + [sym_void_type] = ACTIONS(1155), + [sym_this] = ACTIONS(1155), + [sym_super] = ACTIONS(1155), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1015), - [sym_identifier] = ACTIONS(1017), - [sym_decimal_integer_literal] = ACTIONS(1017), - [sym_hex_integer_literal] = ACTIONS(1017), - [sym_octal_integer_literal] = ACTIONS(1017), - [sym_binary_integer_literal] = ACTIONS(1015), - [sym_decimal_floating_point_literal] = ACTIONS(1015), - [sym_hex_floating_point_literal] = ACTIONS(1017), - [sym_true] = ACTIONS(1017), - [sym_false] = ACTIONS(1017), - [sym_character_literal] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1017), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [sym_null_literal] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_LT] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_final] = ACTIONS(1017), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1017), - [anon_sym_class] = ACTIONS(1017), - [anon_sym_switch] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(1015), - [anon_sym_case] = ACTIONS(1017), - [anon_sym_default] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1015), - [anon_sym_assert] = ACTIONS(1017), - [anon_sym_do] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(1017), - [anon_sym_break] = ACTIONS(1017), - [anon_sym_continue] = ACTIONS(1017), - [anon_sym_return] = ACTIONS(1017), - [anon_sym_yield] = ACTIONS(1017), - [anon_sym_synchronized] = ACTIONS(1017), - [anon_sym_throw] = ACTIONS(1017), - [anon_sym_try] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1017), - [anon_sym_else] = ACTIONS(1017), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_AT] = ACTIONS(1017), - [anon_sym_open] = ACTIONS(1017), - [anon_sym_module] = ACTIONS(1017), - [anon_sym_static] = ACTIONS(1017), - [anon_sym_with] = ACTIONS(1017), - [anon_sym_package] = ACTIONS(1017), - [anon_sym_import] = ACTIONS(1017), - [anon_sym_enum] = ACTIONS(1017), - [anon_sym_public] = ACTIONS(1017), - [anon_sym_protected] = ACTIONS(1017), - [anon_sym_private] = ACTIONS(1017), - [anon_sym_abstract] = ACTIONS(1017), - [anon_sym_strictfp] = ACTIONS(1017), - [anon_sym_native] = ACTIONS(1017), - [anon_sym_transient] = ACTIONS(1017), - [anon_sym_volatile] = ACTIONS(1017), - [anon_sym_sealed] = ACTIONS(1017), - [anon_sym_non_DASHsealed] = ACTIONS(1015), - [anon_sym_record] = ACTIONS(1017), - [anon_sym_ATinterface] = ACTIONS(1015), - [anon_sym_interface] = ACTIONS(1017), - [anon_sym_byte] = ACTIONS(1017), - [anon_sym_short] = ACTIONS(1017), - [anon_sym_int] = ACTIONS(1017), - [anon_sym_long] = ACTIONS(1017), - [anon_sym_char] = ACTIONS(1017), - [anon_sym_float] = ACTIONS(1017), - [anon_sym_double] = ACTIONS(1017), - [sym_boolean_type] = ACTIONS(1017), - [sym_void_type] = ACTIONS(1017), - [sym_this] = ACTIONS(1017), - [sym_super] = ACTIONS(1017), + [STATE(343)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(668), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1019), - [sym_identifier] = ACTIONS(1021), - [sym_decimal_integer_literal] = ACTIONS(1021), - [sym_hex_integer_literal] = ACTIONS(1021), - [sym_octal_integer_literal] = ACTIONS(1021), - [sym_binary_integer_literal] = ACTIONS(1019), - [sym_decimal_floating_point_literal] = ACTIONS(1019), - [sym_hex_floating_point_literal] = ACTIONS(1021), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [sym_character_literal] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1021), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [sym_null_literal] = ACTIONS(1021), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_final] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1019), - [anon_sym_DASH_DASH] = ACTIONS(1019), - [anon_sym_new] = ACTIONS(1021), - [anon_sym_class] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1021), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_case] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_assert] = ACTIONS(1021), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_synchronized] = ACTIONS(1021), - [anon_sym_throw] = ACTIONS(1021), - [anon_sym_try] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_open] = ACTIONS(1021), - [anon_sym_module] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(1021), - [anon_sym_with] = ACTIONS(1021), - [anon_sym_package] = ACTIONS(1021), - [anon_sym_import] = ACTIONS(1021), - [anon_sym_enum] = ACTIONS(1021), - [anon_sym_public] = ACTIONS(1021), - [anon_sym_protected] = ACTIONS(1021), - [anon_sym_private] = ACTIONS(1021), - [anon_sym_abstract] = ACTIONS(1021), - [anon_sym_strictfp] = ACTIONS(1021), - [anon_sym_native] = ACTIONS(1021), - [anon_sym_transient] = ACTIONS(1021), - [anon_sym_volatile] = ACTIONS(1021), - [anon_sym_sealed] = ACTIONS(1021), - [anon_sym_non_DASHsealed] = ACTIONS(1019), - [anon_sym_record] = ACTIONS(1021), - [anon_sym_ATinterface] = ACTIONS(1019), - [anon_sym_interface] = ACTIONS(1021), - [anon_sym_byte] = ACTIONS(1021), - [anon_sym_short] = ACTIONS(1021), - [anon_sym_int] = ACTIONS(1021), - [anon_sym_long] = ACTIONS(1021), - [anon_sym_char] = ACTIONS(1021), - [anon_sym_float] = ACTIONS(1021), - [anon_sym_double] = ACTIONS(1021), - [sym_boolean_type] = ACTIONS(1021), - [sym_void_type] = ACTIONS(1021), - [sym_this] = ACTIONS(1021), - [sym_super] = ACTIONS(1021), + [STATE(344)] = { + [ts_builtin_sym_end] = ACTIONS(1171), + [sym_identifier] = ACTIONS(1173), + [sym_decimal_integer_literal] = ACTIONS(1173), + [sym_hex_integer_literal] = ACTIONS(1173), + [sym_octal_integer_literal] = ACTIONS(1173), + [sym_binary_integer_literal] = ACTIONS(1171), + [sym_decimal_floating_point_literal] = ACTIONS(1171), + [sym_hex_floating_point_literal] = ACTIONS(1173), + [sym_true] = ACTIONS(1173), + [sym_false] = ACTIONS(1173), + [sym_character_literal] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [sym_null_literal] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_final] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1173), + [anon_sym_class] = ACTIONS(1173), + [anon_sym_switch] = ACTIONS(1173), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_default] = ACTIONS(1173), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_assert] = ACTIONS(1173), + [anon_sym_do] = ACTIONS(1173), + [anon_sym_while] = ACTIONS(1173), + [anon_sym_break] = ACTIONS(1173), + [anon_sym_continue] = ACTIONS(1173), + [anon_sym_return] = ACTIONS(1173), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_synchronized] = ACTIONS(1173), + [anon_sym_throw] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1173), + [anon_sym_if] = ACTIONS(1173), + [anon_sym_for] = ACTIONS(1173), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_open] = ACTIONS(1173), + [anon_sym_module] = ACTIONS(1173), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_package] = ACTIONS(1173), + [anon_sym_import] = ACTIONS(1173), + [anon_sym_enum] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1173), + [anon_sym_protected] = ACTIONS(1173), + [anon_sym_private] = ACTIONS(1173), + [anon_sym_abstract] = ACTIONS(1173), + [anon_sym_strictfp] = ACTIONS(1173), + [anon_sym_native] = ACTIONS(1173), + [anon_sym_transient] = ACTIONS(1173), + [anon_sym_volatile] = ACTIONS(1173), + [anon_sym_sealed] = ACTIONS(1173), + [anon_sym_non_DASHsealed] = ACTIONS(1171), + [anon_sym_record] = ACTIONS(1173), + [anon_sym_ATinterface] = ACTIONS(1171), + [anon_sym_interface] = ACTIONS(1173), + [anon_sym_byte] = ACTIONS(1173), + [anon_sym_short] = ACTIONS(1173), + [anon_sym_int] = ACTIONS(1173), + [anon_sym_long] = ACTIONS(1173), + [anon_sym_char] = ACTIONS(1173), + [anon_sym_float] = ACTIONS(1173), + [anon_sym_double] = ACTIONS(1173), + [sym_boolean_type] = ACTIONS(1173), + [sym_void_type] = ACTIONS(1173), + [sym_this] = ACTIONS(1173), + [sym_super] = ACTIONS(1173), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1023), - [sym_identifier] = ACTIONS(1025), - [sym_decimal_integer_literal] = ACTIONS(1025), - [sym_hex_integer_literal] = ACTIONS(1025), - [sym_octal_integer_literal] = ACTIONS(1025), - [sym_binary_integer_literal] = ACTIONS(1023), - [sym_decimal_floating_point_literal] = ACTIONS(1023), - [sym_hex_floating_point_literal] = ACTIONS(1025), - [sym_true] = ACTIONS(1025), - [sym_false] = ACTIONS(1025), - [sym_character_literal] = ACTIONS(1023), - [anon_sym_DQUOTE] = ACTIONS(1025), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [sym_null_literal] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_final] = ACTIONS(1025), - [anon_sym_BANG] = ACTIONS(1023), - [anon_sym_TILDE] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(1023), - [anon_sym_DASH_DASH] = ACTIONS(1023), - [anon_sym_new] = ACTIONS(1025), - [anon_sym_class] = ACTIONS(1025), - [anon_sym_switch] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_case] = ACTIONS(1025), - [anon_sym_default] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_assert] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_yield] = ACTIONS(1025), - [anon_sym_synchronized] = ACTIONS(1025), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_else] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1025), - [anon_sym_open] = ACTIONS(1025), - [anon_sym_module] = ACTIONS(1025), - [anon_sym_static] = ACTIONS(1025), - [anon_sym_with] = ACTIONS(1025), - [anon_sym_package] = ACTIONS(1025), - [anon_sym_import] = ACTIONS(1025), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_public] = ACTIONS(1025), - [anon_sym_protected] = ACTIONS(1025), - [anon_sym_private] = ACTIONS(1025), - [anon_sym_abstract] = ACTIONS(1025), - [anon_sym_strictfp] = ACTIONS(1025), - [anon_sym_native] = ACTIONS(1025), - [anon_sym_transient] = ACTIONS(1025), - [anon_sym_volatile] = ACTIONS(1025), - [anon_sym_sealed] = ACTIONS(1025), - [anon_sym_non_DASHsealed] = ACTIONS(1023), - [anon_sym_record] = ACTIONS(1025), - [anon_sym_ATinterface] = ACTIONS(1023), - [anon_sym_interface] = ACTIONS(1025), - [anon_sym_byte] = ACTIONS(1025), - [anon_sym_short] = ACTIONS(1025), - [anon_sym_int] = ACTIONS(1025), - [anon_sym_long] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_float] = ACTIONS(1025), - [anon_sym_double] = ACTIONS(1025), - [sym_boolean_type] = ACTIONS(1025), - [sym_void_type] = ACTIONS(1025), - [sym_this] = ACTIONS(1025), - [sym_super] = ACTIONS(1025), + [STATE(345)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(595), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1027), - [sym_identifier] = ACTIONS(1029), - [sym_decimal_integer_literal] = ACTIONS(1029), - [sym_hex_integer_literal] = ACTIONS(1029), - [sym_octal_integer_literal] = ACTIONS(1029), - [sym_binary_integer_literal] = ACTIONS(1027), - [sym_decimal_floating_point_literal] = ACTIONS(1027), - [sym_hex_floating_point_literal] = ACTIONS(1029), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [sym_character_literal] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(1029), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [sym_null_literal] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_final] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1027), - [anon_sym_DASH_DASH] = ACTIONS(1027), - [anon_sym_new] = ACTIONS(1029), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_switch] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_case] = ACTIONS(1029), - [anon_sym_default] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_assert] = ACTIONS(1029), - [anon_sym_do] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1029), - [anon_sym_continue] = ACTIONS(1029), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1029), - [anon_sym_synchronized] = ACTIONS(1029), - [anon_sym_throw] = ACTIONS(1029), - [anon_sym_try] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_else] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym_open] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), - [anon_sym_static] = ACTIONS(1029), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_package] = ACTIONS(1029), - [anon_sym_import] = ACTIONS(1029), - [anon_sym_enum] = ACTIONS(1029), - [anon_sym_public] = ACTIONS(1029), - [anon_sym_protected] = ACTIONS(1029), - [anon_sym_private] = ACTIONS(1029), - [anon_sym_abstract] = ACTIONS(1029), - [anon_sym_strictfp] = ACTIONS(1029), - [anon_sym_native] = ACTIONS(1029), - [anon_sym_transient] = ACTIONS(1029), - [anon_sym_volatile] = ACTIONS(1029), - [anon_sym_sealed] = ACTIONS(1029), - [anon_sym_non_DASHsealed] = ACTIONS(1027), - [anon_sym_record] = ACTIONS(1029), - [anon_sym_ATinterface] = ACTIONS(1027), - [anon_sym_interface] = ACTIONS(1029), - [anon_sym_byte] = ACTIONS(1029), - [anon_sym_short] = ACTIONS(1029), - [anon_sym_int] = ACTIONS(1029), - [anon_sym_long] = ACTIONS(1029), - [anon_sym_char] = ACTIONS(1029), - [anon_sym_float] = ACTIONS(1029), - [anon_sym_double] = ACTIONS(1029), - [sym_boolean_type] = ACTIONS(1029), - [sym_void_type] = ACTIONS(1029), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(1029), + [STATE(346)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(622), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1031), - [sym_identifier] = ACTIONS(1033), - [sym_decimal_integer_literal] = ACTIONS(1033), - [sym_hex_integer_literal] = ACTIONS(1033), - [sym_octal_integer_literal] = ACTIONS(1033), - [sym_binary_integer_literal] = ACTIONS(1031), - [sym_decimal_floating_point_literal] = ACTIONS(1031), - [sym_hex_floating_point_literal] = ACTIONS(1033), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [sym_character_literal] = ACTIONS(1031), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [sym_null_literal] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_LT] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_final] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1031), - [anon_sym_TILDE] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(1031), - [anon_sym_DASH_DASH] = ACTIONS(1031), - [anon_sym_new] = ACTIONS(1033), - [anon_sym_class] = ACTIONS(1033), - [anon_sym_switch] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_case] = ACTIONS(1033), - [anon_sym_default] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_assert] = ACTIONS(1033), - [anon_sym_do] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_yield] = ACTIONS(1033), - [anon_sym_synchronized] = ACTIONS(1033), - [anon_sym_throw] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(1033), - [anon_sym_module] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_with] = ACTIONS(1033), - [anon_sym_package] = ACTIONS(1033), - [anon_sym_import] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_public] = ACTIONS(1033), - [anon_sym_protected] = ACTIONS(1033), - [anon_sym_private] = ACTIONS(1033), - [anon_sym_abstract] = ACTIONS(1033), - [anon_sym_strictfp] = ACTIONS(1033), - [anon_sym_native] = ACTIONS(1033), - [anon_sym_transient] = ACTIONS(1033), - [anon_sym_volatile] = ACTIONS(1033), - [anon_sym_sealed] = ACTIONS(1033), - [anon_sym_non_DASHsealed] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1033), - [anon_sym_ATinterface] = ACTIONS(1031), - [anon_sym_interface] = ACTIONS(1033), - [anon_sym_byte] = ACTIONS(1033), - [anon_sym_short] = ACTIONS(1033), - [anon_sym_int] = ACTIONS(1033), - [anon_sym_long] = ACTIONS(1033), - [anon_sym_char] = ACTIONS(1033), - [anon_sym_float] = ACTIONS(1033), - [anon_sym_double] = ACTIONS(1033), - [sym_boolean_type] = ACTIONS(1033), - [sym_void_type] = ACTIONS(1033), - [sym_this] = ACTIONS(1033), - [sym_super] = ACTIONS(1033), + [STATE(347)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(694), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [349] = { - [ts_builtin_sym_end] = ACTIONS(1035), - [sym_identifier] = ACTIONS(1037), - [sym_decimal_integer_literal] = ACTIONS(1037), - [sym_hex_integer_literal] = ACTIONS(1037), - [sym_octal_integer_literal] = ACTIONS(1037), - [sym_binary_integer_literal] = ACTIONS(1035), - [sym_decimal_floating_point_literal] = ACTIONS(1035), - [sym_hex_floating_point_literal] = ACTIONS(1037), - [sym_true] = ACTIONS(1037), - [sym_false] = ACTIONS(1037), - [sym_character_literal] = ACTIONS(1035), - [anon_sym_DQUOTE] = ACTIONS(1037), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [sym_null_literal] = ACTIONS(1037), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_final] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_TILDE] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(1035), - [anon_sym_DASH_DASH] = ACTIONS(1035), - [anon_sym_new] = ACTIONS(1037), - [anon_sym_class] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_assert] = ACTIONS(1037), - [anon_sym_do] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_return] = ACTIONS(1037), - [anon_sym_yield] = ACTIONS(1037), - [anon_sym_synchronized] = ACTIONS(1037), - [anon_sym_throw] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1037), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_AT] = ACTIONS(1037), - [anon_sym_open] = ACTIONS(1037), - [anon_sym_module] = ACTIONS(1037), - [anon_sym_static] = ACTIONS(1037), - [anon_sym_with] = ACTIONS(1037), - [anon_sym_package] = ACTIONS(1037), - [anon_sym_import] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1037), - [anon_sym_public] = ACTIONS(1037), - [anon_sym_protected] = ACTIONS(1037), - [anon_sym_private] = ACTIONS(1037), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_strictfp] = ACTIONS(1037), - [anon_sym_native] = ACTIONS(1037), - [anon_sym_transient] = ACTIONS(1037), - [anon_sym_volatile] = ACTIONS(1037), - [anon_sym_sealed] = ACTIONS(1037), - [anon_sym_non_DASHsealed] = ACTIONS(1035), - [anon_sym_record] = ACTIONS(1037), - [anon_sym_ATinterface] = ACTIONS(1035), - [anon_sym_interface] = ACTIONS(1037), - [anon_sym_byte] = ACTIONS(1037), - [anon_sym_short] = ACTIONS(1037), - [anon_sym_int] = ACTIONS(1037), - [anon_sym_long] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_float] = ACTIONS(1037), - [anon_sym_double] = ACTIONS(1037), - [sym_boolean_type] = ACTIONS(1037), - [sym_void_type] = ACTIONS(1037), - [sym_this] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), + [STATE(348)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(617), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [350] = { - [ts_builtin_sym_end] = ACTIONS(1039), - [sym_identifier] = ACTIONS(1041), - [sym_decimal_integer_literal] = ACTIONS(1041), - [sym_hex_integer_literal] = ACTIONS(1041), - [sym_octal_integer_literal] = ACTIONS(1041), - [sym_binary_integer_literal] = ACTIONS(1039), - [sym_decimal_floating_point_literal] = ACTIONS(1039), - [sym_hex_floating_point_literal] = ACTIONS(1041), - [sym_true] = ACTIONS(1041), - [sym_false] = ACTIONS(1041), - [sym_character_literal] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [sym_null_literal] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_final] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [anon_sym_new] = ACTIONS(1041), - [anon_sym_class] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_assert] = ACTIONS(1041), - [anon_sym_do] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_yield] = ACTIONS(1041), - [anon_sym_synchronized] = ACTIONS(1041), - [anon_sym_throw] = ACTIONS(1041), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1041), - [anon_sym_open] = ACTIONS(1041), - [anon_sym_module] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_with] = ACTIONS(1041), - [anon_sym_package] = ACTIONS(1041), - [anon_sym_import] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_public] = ACTIONS(1041), - [anon_sym_protected] = ACTIONS(1041), - [anon_sym_private] = ACTIONS(1041), - [anon_sym_abstract] = ACTIONS(1041), - [anon_sym_strictfp] = ACTIONS(1041), - [anon_sym_native] = ACTIONS(1041), - [anon_sym_transient] = ACTIONS(1041), - [anon_sym_volatile] = ACTIONS(1041), - [anon_sym_sealed] = ACTIONS(1041), - [anon_sym_non_DASHsealed] = ACTIONS(1039), - [anon_sym_record] = ACTIONS(1041), - [anon_sym_ATinterface] = ACTIONS(1039), - [anon_sym_interface] = ACTIONS(1041), - [anon_sym_byte] = ACTIONS(1041), - [anon_sym_short] = ACTIONS(1041), - [anon_sym_int] = ACTIONS(1041), - [anon_sym_long] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_float] = ACTIONS(1041), - [anon_sym_double] = ACTIONS(1041), - [sym_boolean_type] = ACTIONS(1041), - [sym_void_type] = ACTIONS(1041), - [sym_this] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), + [STATE(349)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(609), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [351] = { - [ts_builtin_sym_end] = ACTIONS(1043), - [sym_identifier] = ACTIONS(1045), - [sym_decimal_integer_literal] = ACTIONS(1045), - [sym_hex_integer_literal] = ACTIONS(1045), - [sym_octal_integer_literal] = ACTIONS(1045), - [sym_binary_integer_literal] = ACTIONS(1043), - [sym_decimal_floating_point_literal] = ACTIONS(1043), - [sym_hex_floating_point_literal] = ACTIONS(1045), - [sym_true] = ACTIONS(1045), - [sym_false] = ACTIONS(1045), - [sym_character_literal] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(1045), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [sym_null_literal] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_LT] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_final] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(1043), - [anon_sym_new] = ACTIONS(1045), - [anon_sym_class] = ACTIONS(1045), - [anon_sym_switch] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_case] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_assert] = ACTIONS(1045), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_synchronized] = ACTIONS(1045), - [anon_sym_throw] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_else] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_AT] = ACTIONS(1045), - [anon_sym_open] = ACTIONS(1045), - [anon_sym_module] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_with] = ACTIONS(1045), - [anon_sym_package] = ACTIONS(1045), - [anon_sym_import] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_public] = ACTIONS(1045), - [anon_sym_protected] = ACTIONS(1045), - [anon_sym_private] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1045), - [anon_sym_strictfp] = ACTIONS(1045), - [anon_sym_native] = ACTIONS(1045), - [anon_sym_transient] = ACTIONS(1045), - [anon_sym_volatile] = ACTIONS(1045), - [anon_sym_sealed] = ACTIONS(1045), - [anon_sym_non_DASHsealed] = ACTIONS(1043), - [anon_sym_record] = ACTIONS(1045), - [anon_sym_ATinterface] = ACTIONS(1043), - [anon_sym_interface] = ACTIONS(1045), - [anon_sym_byte] = ACTIONS(1045), - [anon_sym_short] = ACTIONS(1045), - [anon_sym_int] = ACTIONS(1045), - [anon_sym_long] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_float] = ACTIONS(1045), - [anon_sym_double] = ACTIONS(1045), - [sym_boolean_type] = ACTIONS(1045), - [sym_void_type] = ACTIONS(1045), - [sym_this] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), + [STATE(350)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(611), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_identifier] = ACTIONS(1049), - [sym_decimal_integer_literal] = ACTIONS(1049), - [sym_hex_integer_literal] = ACTIONS(1049), - [sym_octal_integer_literal] = ACTIONS(1049), - [sym_binary_integer_literal] = ACTIONS(1047), - [sym_decimal_floating_point_literal] = ACTIONS(1047), - [sym_hex_floating_point_literal] = ACTIONS(1049), - [sym_true] = ACTIONS(1049), - [sym_false] = ACTIONS(1049), - [sym_character_literal] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1049), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [sym_null_literal] = ACTIONS(1049), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LT] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_final] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_PLUS_PLUS] = ACTIONS(1047), - [anon_sym_DASH_DASH] = ACTIONS(1047), - [anon_sym_new] = ACTIONS(1049), - [anon_sym_class] = ACTIONS(1049), - [anon_sym_switch] = ACTIONS(1049), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_case] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_assert] = ACTIONS(1049), - [anon_sym_do] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1049), - [anon_sym_synchronized] = ACTIONS(1049), - [anon_sym_throw] = ACTIONS(1049), - [anon_sym_try] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_else] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_AT] = ACTIONS(1049), - [anon_sym_open] = ACTIONS(1049), - [anon_sym_module] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_with] = ACTIONS(1049), - [anon_sym_package] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_public] = ACTIONS(1049), - [anon_sym_protected] = ACTIONS(1049), - [anon_sym_private] = ACTIONS(1049), - [anon_sym_abstract] = ACTIONS(1049), - [anon_sym_strictfp] = ACTIONS(1049), - [anon_sym_native] = ACTIONS(1049), - [anon_sym_transient] = ACTIONS(1049), - [anon_sym_volatile] = ACTIONS(1049), - [anon_sym_sealed] = ACTIONS(1049), - [anon_sym_non_DASHsealed] = ACTIONS(1047), - [anon_sym_record] = ACTIONS(1049), - [anon_sym_ATinterface] = ACTIONS(1047), - [anon_sym_interface] = ACTIONS(1049), - [anon_sym_byte] = ACTIONS(1049), - [anon_sym_short] = ACTIONS(1049), - [anon_sym_int] = ACTIONS(1049), - [anon_sym_long] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [anon_sym_float] = ACTIONS(1049), - [anon_sym_double] = ACTIONS(1049), - [sym_boolean_type] = ACTIONS(1049), - [sym_void_type] = ACTIONS(1049), - [sym_this] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), + [STATE(351)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(612), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1053), - [sym_decimal_integer_literal] = ACTIONS(1053), - [sym_hex_integer_literal] = ACTIONS(1053), - [sym_octal_integer_literal] = ACTIONS(1053), - [sym_binary_integer_literal] = ACTIONS(1051), - [sym_decimal_floating_point_literal] = ACTIONS(1051), - [sym_hex_floating_point_literal] = ACTIONS(1053), - [sym_true] = ACTIONS(1053), - [sym_false] = ACTIONS(1053), - [sym_character_literal] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1053), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [sym_null_literal] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_final] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1051), - [anon_sym_new] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_switch] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_default] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_assert] = ACTIONS(1053), - [anon_sym_do] = ACTIONS(1053), - [anon_sym_while] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_yield] = ACTIONS(1053), - [anon_sym_synchronized] = ACTIONS(1053), - [anon_sym_throw] = ACTIONS(1053), - [anon_sym_try] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [anon_sym_AT] = ACTIONS(1053), - [anon_sym_open] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_with] = ACTIONS(1053), - [anon_sym_package] = ACTIONS(1053), - [anon_sym_import] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_abstract] = ACTIONS(1053), - [anon_sym_strictfp] = ACTIONS(1053), - [anon_sym_native] = ACTIONS(1053), - [anon_sym_transient] = ACTIONS(1053), - [anon_sym_volatile] = ACTIONS(1053), - [anon_sym_sealed] = ACTIONS(1053), - [anon_sym_non_DASHsealed] = ACTIONS(1051), - [anon_sym_record] = ACTIONS(1053), - [anon_sym_ATinterface] = ACTIONS(1051), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_byte] = ACTIONS(1053), - [anon_sym_short] = ACTIONS(1053), - [anon_sym_int] = ACTIONS(1053), - [anon_sym_long] = ACTIONS(1053), - [anon_sym_char] = ACTIONS(1053), - [anon_sym_float] = ACTIONS(1053), - [anon_sym_double] = ACTIONS(1053), - [sym_boolean_type] = ACTIONS(1053), - [sym_void_type] = ACTIONS(1053), - [sym_this] = ACTIONS(1053), - [sym_super] = ACTIONS(1053), + [STATE(352)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(621), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(1055), - [sym_identifier] = ACTIONS(1057), - [sym_decimal_integer_literal] = ACTIONS(1057), - [sym_hex_integer_literal] = ACTIONS(1057), - [sym_octal_integer_literal] = ACTIONS(1057), - [sym_binary_integer_literal] = ACTIONS(1055), - [sym_decimal_floating_point_literal] = ACTIONS(1055), - [sym_hex_floating_point_literal] = ACTIONS(1057), - [sym_true] = ACTIONS(1057), - [sym_false] = ACTIONS(1057), - [sym_character_literal] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [sym_null_literal] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_final] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_TILDE] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_switch] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_case] = ACTIONS(1057), - [anon_sym_default] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_assert] = ACTIONS(1057), - [anon_sym_do] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1057), - [anon_sym_continue] = ACTIONS(1057), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_yield] = ACTIONS(1057), - [anon_sym_synchronized] = ACTIONS(1057), - [anon_sym_throw] = ACTIONS(1057), - [anon_sym_try] = ACTIONS(1057), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1057), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_AT] = ACTIONS(1057), - [anon_sym_open] = ACTIONS(1057), - [anon_sym_module] = ACTIONS(1057), - [anon_sym_static] = ACTIONS(1057), - [anon_sym_with] = ACTIONS(1057), - [anon_sym_package] = ACTIONS(1057), - [anon_sym_import] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1057), - [anon_sym_public] = ACTIONS(1057), - [anon_sym_protected] = ACTIONS(1057), - [anon_sym_private] = ACTIONS(1057), - [anon_sym_abstract] = ACTIONS(1057), - [anon_sym_strictfp] = ACTIONS(1057), - [anon_sym_native] = ACTIONS(1057), - [anon_sym_transient] = ACTIONS(1057), - [anon_sym_volatile] = ACTIONS(1057), - [anon_sym_sealed] = ACTIONS(1057), - [anon_sym_non_DASHsealed] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1057), - [anon_sym_ATinterface] = ACTIONS(1055), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_byte] = ACTIONS(1057), - [anon_sym_short] = ACTIONS(1057), - [anon_sym_int] = ACTIONS(1057), - [anon_sym_long] = ACTIONS(1057), - [anon_sym_char] = ACTIONS(1057), - [anon_sym_float] = ACTIONS(1057), - [anon_sym_double] = ACTIONS(1057), - [sym_boolean_type] = ACTIONS(1057), - [sym_void_type] = ACTIONS(1057), - [sym_this] = ACTIONS(1057), - [sym_super] = ACTIONS(1057), + [STATE(353)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(1059), - [sym_identifier] = ACTIONS(1061), - [sym_decimal_integer_literal] = ACTIONS(1061), - [sym_hex_integer_literal] = ACTIONS(1061), - [sym_octal_integer_literal] = ACTIONS(1061), - [sym_binary_integer_literal] = ACTIONS(1059), - [sym_decimal_floating_point_literal] = ACTIONS(1059), - [sym_hex_floating_point_literal] = ACTIONS(1061), - [sym_true] = ACTIONS(1061), - [sym_false] = ACTIONS(1061), - [sym_character_literal] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1061), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [sym_null_literal] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_PLUS] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1061), - [anon_sym_final] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1059), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_switch] = ACTIONS(1061), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_case] = ACTIONS(1061), - [anon_sym_default] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_assert] = ACTIONS(1061), - [anon_sym_do] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(1061), - [anon_sym_break] = ACTIONS(1061), - [anon_sym_continue] = ACTIONS(1061), - [anon_sym_return] = ACTIONS(1061), - [anon_sym_yield] = ACTIONS(1061), - [anon_sym_synchronized] = ACTIONS(1061), - [anon_sym_throw] = ACTIONS(1061), - [anon_sym_try] = ACTIONS(1061), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_else] = ACTIONS(1061), - [anon_sym_for] = ACTIONS(1061), - [anon_sym_AT] = ACTIONS(1061), - [anon_sym_open] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_with] = ACTIONS(1061), - [anon_sym_package] = ACTIONS(1061), - [anon_sym_import] = ACTIONS(1061), - [anon_sym_enum] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_abstract] = ACTIONS(1061), - [anon_sym_strictfp] = ACTIONS(1061), - [anon_sym_native] = ACTIONS(1061), - [anon_sym_transient] = ACTIONS(1061), - [anon_sym_volatile] = ACTIONS(1061), - [anon_sym_sealed] = ACTIONS(1061), - [anon_sym_non_DASHsealed] = ACTIONS(1059), - [anon_sym_record] = ACTIONS(1061), - [anon_sym_ATinterface] = ACTIONS(1059), - [anon_sym_interface] = ACTIONS(1061), - [anon_sym_byte] = ACTIONS(1061), - [anon_sym_short] = ACTIONS(1061), - [anon_sym_int] = ACTIONS(1061), - [anon_sym_long] = ACTIONS(1061), - [anon_sym_char] = ACTIONS(1061), - [anon_sym_float] = ACTIONS(1061), - [anon_sym_double] = ACTIONS(1061), - [sym_boolean_type] = ACTIONS(1061), - [sym_void_type] = ACTIONS(1061), - [sym_this] = ACTIONS(1061), - [sym_super] = ACTIONS(1061), + [STATE(354)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(691), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1063), - [sym_identifier] = ACTIONS(1065), - [sym_decimal_integer_literal] = ACTIONS(1065), - [sym_hex_integer_literal] = ACTIONS(1065), - [sym_octal_integer_literal] = ACTIONS(1065), - [sym_binary_integer_literal] = ACTIONS(1063), - [sym_decimal_floating_point_literal] = ACTIONS(1063), - [sym_hex_floating_point_literal] = ACTIONS(1065), - [sym_true] = ACTIONS(1065), - [sym_false] = ACTIONS(1065), - [sym_character_literal] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1065), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1063), - [anon_sym_RBRACE] = ACTIONS(1063), - [sym_null_literal] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_PLUS] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_final] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1063), - [anon_sym_PLUS_PLUS] = ACTIONS(1063), - [anon_sym_DASH_DASH] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(1065), - [anon_sym_class] = ACTIONS(1065), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_case] = ACTIONS(1065), - [anon_sym_default] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_assert] = ACTIONS(1065), - [anon_sym_do] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1065), - [anon_sym_break] = ACTIONS(1065), - [anon_sym_continue] = ACTIONS(1065), - [anon_sym_return] = ACTIONS(1065), - [anon_sym_yield] = ACTIONS(1065), - [anon_sym_synchronized] = ACTIONS(1065), - [anon_sym_throw] = ACTIONS(1065), - [anon_sym_try] = ACTIONS(1065), - [anon_sym_if] = ACTIONS(1065), - [anon_sym_else] = ACTIONS(1065), - [anon_sym_for] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(1065), - [anon_sym_open] = ACTIONS(1065), - [anon_sym_module] = ACTIONS(1065), - [anon_sym_static] = ACTIONS(1065), - [anon_sym_with] = ACTIONS(1065), - [anon_sym_package] = ACTIONS(1065), - [anon_sym_import] = ACTIONS(1065), - [anon_sym_enum] = ACTIONS(1065), - [anon_sym_public] = ACTIONS(1065), - [anon_sym_protected] = ACTIONS(1065), - [anon_sym_private] = ACTIONS(1065), - [anon_sym_abstract] = ACTIONS(1065), - [anon_sym_strictfp] = ACTIONS(1065), - [anon_sym_native] = ACTIONS(1065), - [anon_sym_transient] = ACTIONS(1065), - [anon_sym_volatile] = ACTIONS(1065), - [anon_sym_sealed] = ACTIONS(1065), - [anon_sym_non_DASHsealed] = ACTIONS(1063), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_ATinterface] = ACTIONS(1063), - [anon_sym_interface] = ACTIONS(1065), - [anon_sym_byte] = ACTIONS(1065), - [anon_sym_short] = ACTIONS(1065), - [anon_sym_int] = ACTIONS(1065), - [anon_sym_long] = ACTIONS(1065), - [anon_sym_char] = ACTIONS(1065), - [anon_sym_float] = ACTIONS(1065), - [anon_sym_double] = ACTIONS(1065), - [sym_boolean_type] = ACTIONS(1065), - [sym_void_type] = ACTIONS(1065), - [sym_this] = ACTIONS(1065), - [sym_super] = ACTIONS(1065), + [STATE(355)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(677), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1067), - [sym_identifier] = ACTIONS(1069), - [sym_decimal_integer_literal] = ACTIONS(1069), - [sym_hex_integer_literal] = ACTIONS(1069), - [sym_octal_integer_literal] = ACTIONS(1069), - [sym_binary_integer_literal] = ACTIONS(1067), - [sym_decimal_floating_point_literal] = ACTIONS(1067), - [sym_hex_floating_point_literal] = ACTIONS(1069), - [sym_true] = ACTIONS(1069), - [sym_false] = ACTIONS(1069), - [sym_character_literal] = ACTIONS(1067), - [anon_sym_DQUOTE] = ACTIONS(1069), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1067), - [anon_sym_RBRACE] = ACTIONS(1067), - [sym_null_literal] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1067), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_final] = ACTIONS(1069), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1067), - [anon_sym_PLUS_PLUS] = ACTIONS(1067), - [anon_sym_DASH_DASH] = ACTIONS(1067), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_class] = ACTIONS(1069), - [anon_sym_switch] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_case] = ACTIONS(1069), - [anon_sym_default] = ACTIONS(1069), - [anon_sym_SEMI] = ACTIONS(1067), - [anon_sym_assert] = ACTIONS(1069), - [anon_sym_do] = ACTIONS(1069), - [anon_sym_while] = ACTIONS(1069), - [anon_sym_break] = ACTIONS(1069), - [anon_sym_continue] = ACTIONS(1069), - [anon_sym_return] = ACTIONS(1069), - [anon_sym_yield] = ACTIONS(1069), - [anon_sym_synchronized] = ACTIONS(1069), - [anon_sym_throw] = ACTIONS(1069), - [anon_sym_try] = ACTIONS(1069), - [anon_sym_if] = ACTIONS(1069), - [anon_sym_else] = ACTIONS(1069), - [anon_sym_for] = ACTIONS(1069), - [anon_sym_AT] = ACTIONS(1069), - [anon_sym_open] = ACTIONS(1069), - [anon_sym_module] = ACTIONS(1069), - [anon_sym_static] = ACTIONS(1069), - [anon_sym_with] = ACTIONS(1069), - [anon_sym_package] = ACTIONS(1069), - [anon_sym_import] = ACTIONS(1069), - [anon_sym_enum] = ACTIONS(1069), - [anon_sym_public] = ACTIONS(1069), - [anon_sym_protected] = ACTIONS(1069), - [anon_sym_private] = ACTIONS(1069), - [anon_sym_abstract] = ACTIONS(1069), - [anon_sym_strictfp] = ACTIONS(1069), - [anon_sym_native] = ACTIONS(1069), - [anon_sym_transient] = ACTIONS(1069), - [anon_sym_volatile] = ACTIONS(1069), - [anon_sym_sealed] = ACTIONS(1069), - [anon_sym_non_DASHsealed] = ACTIONS(1067), - [anon_sym_record] = ACTIONS(1069), - [anon_sym_ATinterface] = ACTIONS(1067), - [anon_sym_interface] = ACTIONS(1069), - [anon_sym_byte] = ACTIONS(1069), - [anon_sym_short] = ACTIONS(1069), - [anon_sym_int] = ACTIONS(1069), - [anon_sym_long] = ACTIONS(1069), - [anon_sym_char] = ACTIONS(1069), - [anon_sym_float] = ACTIONS(1069), - [anon_sym_double] = ACTIONS(1069), - [sym_boolean_type] = ACTIONS(1069), - [sym_void_type] = ACTIONS(1069), - [sym_this] = ACTIONS(1069), - [sym_super] = ACTIONS(1069), + [STATE(356)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(697), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [sym_decimal_integer_literal] = ACTIONS(586), - [sym_hex_integer_literal] = ACTIONS(586), - [sym_octal_integer_literal] = ACTIONS(586), - [sym_binary_integer_literal] = ACTIONS(584), - [sym_decimal_floating_point_literal] = ACTIONS(584), - [sym_hex_floating_point_literal] = ACTIONS(586), - [sym_true] = ACTIONS(586), - [sym_false] = ACTIONS(586), - [sym_character_literal] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [sym_null_literal] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_final] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_PLUS_PLUS] = ACTIONS(584), - [anon_sym_DASH_DASH] = ACTIONS(584), - [anon_sym_new] = ACTIONS(586), - [anon_sym_class] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_case] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_assert] = ACTIONS(586), - [anon_sym_do] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(586), - [anon_sym_synchronized] = ACTIONS(586), - [anon_sym_throw] = ACTIONS(586), - [anon_sym_try] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_else] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_AT] = ACTIONS(586), - [anon_sym_open] = ACTIONS(586), - [anon_sym_module] = ACTIONS(586), - [anon_sym_static] = ACTIONS(586), - [anon_sym_with] = ACTIONS(586), - [anon_sym_package] = ACTIONS(586), - [anon_sym_import] = ACTIONS(586), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_public] = ACTIONS(586), - [anon_sym_protected] = ACTIONS(586), - [anon_sym_private] = ACTIONS(586), - [anon_sym_abstract] = ACTIONS(586), - [anon_sym_strictfp] = ACTIONS(586), - [anon_sym_native] = ACTIONS(586), - [anon_sym_transient] = ACTIONS(586), - [anon_sym_volatile] = ACTIONS(586), - [anon_sym_sealed] = ACTIONS(586), - [anon_sym_non_DASHsealed] = ACTIONS(584), - [anon_sym_record] = ACTIONS(586), - [anon_sym_ATinterface] = ACTIONS(584), - [anon_sym_interface] = ACTIONS(586), - [anon_sym_byte] = ACTIONS(586), - [anon_sym_short] = ACTIONS(586), - [anon_sym_int] = ACTIONS(586), - [anon_sym_long] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_float] = ACTIONS(586), - [anon_sym_double] = ACTIONS(586), - [sym_boolean_type] = ACTIONS(586), - [sym_void_type] = ACTIONS(586), - [sym_this] = ACTIONS(586), - [sym_super] = ACTIONS(586), + [STATE(357)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(613), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1071), - [sym_identifier] = ACTIONS(1073), - [sym_decimal_integer_literal] = ACTIONS(1073), - [sym_hex_integer_literal] = ACTIONS(1073), - [sym_octal_integer_literal] = ACTIONS(1073), - [sym_binary_integer_literal] = ACTIONS(1071), - [sym_decimal_floating_point_literal] = ACTIONS(1071), - [sym_hex_floating_point_literal] = ACTIONS(1073), - [sym_true] = ACTIONS(1073), - [sym_false] = ACTIONS(1073), - [sym_character_literal] = ACTIONS(1071), - [anon_sym_DQUOTE] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1071), - [anon_sym_RBRACE] = ACTIONS(1071), - [sym_null_literal] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(1071), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_PLUS] = ACTIONS(1073), - [anon_sym_DASH] = ACTIONS(1073), - [anon_sym_final] = ACTIONS(1073), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1071), - [anon_sym_PLUS_PLUS] = ACTIONS(1071), - [anon_sym_DASH_DASH] = ACTIONS(1071), - [anon_sym_new] = ACTIONS(1073), - [anon_sym_class] = ACTIONS(1073), - [anon_sym_switch] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1071), - [anon_sym_case] = ACTIONS(1073), - [anon_sym_default] = ACTIONS(1073), - [anon_sym_SEMI] = ACTIONS(1071), - [anon_sym_assert] = ACTIONS(1073), - [anon_sym_do] = ACTIONS(1073), - [anon_sym_while] = ACTIONS(1073), - [anon_sym_break] = ACTIONS(1073), - [anon_sym_continue] = ACTIONS(1073), - [anon_sym_return] = ACTIONS(1073), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_synchronized] = ACTIONS(1073), - [anon_sym_throw] = ACTIONS(1073), - [anon_sym_try] = ACTIONS(1073), - [anon_sym_if] = ACTIONS(1073), - [anon_sym_else] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1073), - [anon_sym_AT] = ACTIONS(1073), - [anon_sym_open] = ACTIONS(1073), - [anon_sym_module] = ACTIONS(1073), - [anon_sym_static] = ACTIONS(1073), - [anon_sym_with] = ACTIONS(1073), - [anon_sym_package] = ACTIONS(1073), - [anon_sym_import] = ACTIONS(1073), - [anon_sym_enum] = ACTIONS(1073), - [anon_sym_public] = ACTIONS(1073), - [anon_sym_protected] = ACTIONS(1073), - [anon_sym_private] = ACTIONS(1073), - [anon_sym_abstract] = ACTIONS(1073), - [anon_sym_strictfp] = ACTIONS(1073), - [anon_sym_native] = ACTIONS(1073), - [anon_sym_transient] = ACTIONS(1073), - [anon_sym_volatile] = ACTIONS(1073), - [anon_sym_sealed] = ACTIONS(1073), - [anon_sym_non_DASHsealed] = ACTIONS(1071), - [anon_sym_record] = ACTIONS(1073), - [anon_sym_ATinterface] = ACTIONS(1071), - [anon_sym_interface] = ACTIONS(1073), - [anon_sym_byte] = ACTIONS(1073), - [anon_sym_short] = ACTIONS(1073), - [anon_sym_int] = ACTIONS(1073), - [anon_sym_long] = ACTIONS(1073), - [anon_sym_char] = ACTIONS(1073), - [anon_sym_float] = ACTIONS(1073), - [anon_sym_double] = ACTIONS(1073), - [sym_boolean_type] = ACTIONS(1073), - [sym_void_type] = ACTIONS(1073), - [sym_this] = ACTIONS(1073), - [sym_super] = ACTIONS(1073), + [STATE(358)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(589), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1077), - [sym_decimal_integer_literal] = ACTIONS(1077), - [sym_hex_integer_literal] = ACTIONS(1077), - [sym_octal_integer_literal] = ACTIONS(1077), - [sym_binary_integer_literal] = ACTIONS(1075), - [sym_decimal_floating_point_literal] = ACTIONS(1075), - [sym_hex_floating_point_literal] = ACTIONS(1077), - [sym_true] = ACTIONS(1077), - [sym_false] = ACTIONS(1077), - [sym_character_literal] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1077), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [sym_null_literal] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_final] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_PLUS_PLUS] = ACTIONS(1075), - [anon_sym_DASH_DASH] = ACTIONS(1075), - [anon_sym_new] = ACTIONS(1077), - [anon_sym_class] = ACTIONS(1077), - [anon_sym_switch] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_case] = ACTIONS(1077), - [anon_sym_default] = ACTIONS(1077), - [anon_sym_SEMI] = ACTIONS(1075), - [anon_sym_assert] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(1077), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_break] = ACTIONS(1077), - [anon_sym_continue] = ACTIONS(1077), - [anon_sym_return] = ACTIONS(1077), - [anon_sym_yield] = ACTIONS(1077), - [anon_sym_synchronized] = ACTIONS(1077), - [anon_sym_throw] = ACTIONS(1077), - [anon_sym_try] = ACTIONS(1077), - [anon_sym_if] = ACTIONS(1077), - [anon_sym_else] = ACTIONS(1077), - [anon_sym_for] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1077), - [anon_sym_open] = ACTIONS(1077), - [anon_sym_module] = ACTIONS(1077), - [anon_sym_static] = ACTIONS(1077), - [anon_sym_with] = ACTIONS(1077), - [anon_sym_package] = ACTIONS(1077), - [anon_sym_import] = ACTIONS(1077), - [anon_sym_enum] = ACTIONS(1077), - [anon_sym_public] = ACTIONS(1077), - [anon_sym_protected] = ACTIONS(1077), - [anon_sym_private] = ACTIONS(1077), - [anon_sym_abstract] = ACTIONS(1077), - [anon_sym_strictfp] = ACTIONS(1077), - [anon_sym_native] = ACTIONS(1077), - [anon_sym_transient] = ACTIONS(1077), - [anon_sym_volatile] = ACTIONS(1077), - [anon_sym_sealed] = ACTIONS(1077), - [anon_sym_non_DASHsealed] = ACTIONS(1075), - [anon_sym_record] = ACTIONS(1077), - [anon_sym_ATinterface] = ACTIONS(1075), - [anon_sym_interface] = ACTIONS(1077), - [anon_sym_byte] = ACTIONS(1077), - [anon_sym_short] = ACTIONS(1077), - [anon_sym_int] = ACTIONS(1077), - [anon_sym_long] = ACTIONS(1077), - [anon_sym_char] = ACTIONS(1077), - [anon_sym_float] = ACTIONS(1077), - [anon_sym_double] = ACTIONS(1077), - [sym_boolean_type] = ACTIONS(1077), - [sym_void_type] = ACTIONS(1077), - [sym_this] = ACTIONS(1077), - [sym_super] = ACTIONS(1077), + [STATE(359)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(564), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(1079), - [sym_identifier] = ACTIONS(1081), - [sym_decimal_integer_literal] = ACTIONS(1081), - [sym_hex_integer_literal] = ACTIONS(1081), - [sym_octal_integer_literal] = ACTIONS(1081), - [sym_binary_integer_literal] = ACTIONS(1079), - [sym_decimal_floating_point_literal] = ACTIONS(1079), - [sym_hex_floating_point_literal] = ACTIONS(1081), - [sym_true] = ACTIONS(1081), - [sym_false] = ACTIONS(1081), - [sym_character_literal] = ACTIONS(1079), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1079), - [sym_null_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_LT] = ACTIONS(1079), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_final] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_TILDE] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_new] = ACTIONS(1081), - [anon_sym_class] = ACTIONS(1081), - [anon_sym_switch] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_case] = ACTIONS(1081), - [anon_sym_default] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1079), - [anon_sym_assert] = ACTIONS(1081), - [anon_sym_do] = ACTIONS(1081), - [anon_sym_while] = ACTIONS(1081), - [anon_sym_break] = ACTIONS(1081), - [anon_sym_continue] = ACTIONS(1081), - [anon_sym_return] = ACTIONS(1081), - [anon_sym_yield] = ACTIONS(1081), - [anon_sym_synchronized] = ACTIONS(1081), - [anon_sym_throw] = ACTIONS(1081), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_if] = ACTIONS(1081), - [anon_sym_else] = ACTIONS(1081), - [anon_sym_for] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1081), - [anon_sym_open] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_with] = ACTIONS(1081), - [anon_sym_package] = ACTIONS(1081), - [anon_sym_import] = ACTIONS(1081), - [anon_sym_enum] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_abstract] = ACTIONS(1081), - [anon_sym_strictfp] = ACTIONS(1081), - [anon_sym_native] = ACTIONS(1081), - [anon_sym_transient] = ACTIONS(1081), - [anon_sym_volatile] = ACTIONS(1081), - [anon_sym_sealed] = ACTIONS(1081), - [anon_sym_non_DASHsealed] = ACTIONS(1079), - [anon_sym_record] = ACTIONS(1081), - [anon_sym_ATinterface] = ACTIONS(1079), - [anon_sym_interface] = ACTIONS(1081), - [anon_sym_byte] = ACTIONS(1081), - [anon_sym_short] = ACTIONS(1081), - [anon_sym_int] = ACTIONS(1081), - [anon_sym_long] = ACTIONS(1081), - [anon_sym_char] = ACTIONS(1081), - [anon_sym_float] = ACTIONS(1081), - [anon_sym_double] = ACTIONS(1081), - [sym_boolean_type] = ACTIONS(1081), - [sym_void_type] = ACTIONS(1081), - [sym_this] = ACTIONS(1081), - [sym_super] = ACTIONS(1081), + [STATE(360)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(569), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(573), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(525), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1083), - [sym_identifier] = ACTIONS(1085), - [sym_decimal_integer_literal] = ACTIONS(1085), - [sym_hex_integer_literal] = ACTIONS(1085), - [sym_octal_integer_literal] = ACTIONS(1085), - [sym_binary_integer_literal] = ACTIONS(1083), - [sym_decimal_floating_point_literal] = ACTIONS(1083), - [sym_hex_floating_point_literal] = ACTIONS(1085), - [sym_true] = ACTIONS(1085), - [sym_false] = ACTIONS(1085), - [sym_character_literal] = ACTIONS(1083), - [anon_sym_DQUOTE] = ACTIONS(1085), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1083), - [anon_sym_RBRACE] = ACTIONS(1083), - [sym_null_literal] = ACTIONS(1085), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1085), - [anon_sym_DASH] = ACTIONS(1085), - [anon_sym_final] = ACTIONS(1085), - [anon_sym_BANG] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_PLUS_PLUS] = ACTIONS(1083), - [anon_sym_DASH_DASH] = ACTIONS(1083), - [anon_sym_new] = ACTIONS(1085), - [anon_sym_class] = ACTIONS(1085), - [anon_sym_switch] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(1083), - [anon_sym_case] = ACTIONS(1085), - [anon_sym_default] = ACTIONS(1085), - [anon_sym_SEMI] = ACTIONS(1083), - [anon_sym_assert] = ACTIONS(1085), - [anon_sym_do] = ACTIONS(1085), - [anon_sym_while] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1085), - [anon_sym_continue] = ACTIONS(1085), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_yield] = ACTIONS(1085), - [anon_sym_synchronized] = ACTIONS(1085), - [anon_sym_throw] = ACTIONS(1085), - [anon_sym_try] = ACTIONS(1085), - [anon_sym_if] = ACTIONS(1085), - [anon_sym_else] = ACTIONS(1085), - [anon_sym_for] = ACTIONS(1085), - [anon_sym_AT] = ACTIONS(1085), - [anon_sym_open] = ACTIONS(1085), - [anon_sym_module] = ACTIONS(1085), - [anon_sym_static] = ACTIONS(1085), - [anon_sym_with] = ACTIONS(1085), - [anon_sym_package] = ACTIONS(1085), - [anon_sym_import] = ACTIONS(1085), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_public] = ACTIONS(1085), - [anon_sym_protected] = ACTIONS(1085), - [anon_sym_private] = ACTIONS(1085), - [anon_sym_abstract] = ACTIONS(1085), - [anon_sym_strictfp] = ACTIONS(1085), - [anon_sym_native] = ACTIONS(1085), - [anon_sym_transient] = ACTIONS(1085), - [anon_sym_volatile] = ACTIONS(1085), - [anon_sym_sealed] = ACTIONS(1085), - [anon_sym_non_DASHsealed] = ACTIONS(1083), - [anon_sym_record] = ACTIONS(1085), - [anon_sym_ATinterface] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1085), - [anon_sym_byte] = ACTIONS(1085), - [anon_sym_short] = ACTIONS(1085), - [anon_sym_int] = ACTIONS(1085), - [anon_sym_long] = ACTIONS(1085), - [anon_sym_char] = ACTIONS(1085), - [anon_sym_float] = ACTIONS(1085), - [anon_sym_double] = ACTIONS(1085), - [sym_boolean_type] = ACTIONS(1085), - [sym_void_type] = ACTIONS(1085), - [sym_this] = ACTIONS(1085), - [sym_super] = ACTIONS(1085), + [STATE(361)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(696), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1087), - [sym_identifier] = ACTIONS(1089), - [sym_decimal_integer_literal] = ACTIONS(1089), - [sym_hex_integer_literal] = ACTIONS(1089), - [sym_octal_integer_literal] = ACTIONS(1089), - [sym_binary_integer_literal] = ACTIONS(1087), - [sym_decimal_floating_point_literal] = ACTIONS(1087), - [sym_hex_floating_point_literal] = ACTIONS(1089), - [sym_true] = ACTIONS(1089), - [sym_false] = ACTIONS(1089), - [sym_character_literal] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(1089), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1087), - [sym_null_literal] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1089), - [anon_sym_DASH] = ACTIONS(1089), - [anon_sym_final] = ACTIONS(1089), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1087), - [anon_sym_DASH_DASH] = ACTIONS(1087), - [anon_sym_new] = ACTIONS(1089), - [anon_sym_class] = ACTIONS(1089), - [anon_sym_switch] = ACTIONS(1089), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_case] = ACTIONS(1089), - [anon_sym_default] = ACTIONS(1089), - [anon_sym_SEMI] = ACTIONS(1087), - [anon_sym_assert] = ACTIONS(1089), - [anon_sym_do] = ACTIONS(1089), - [anon_sym_while] = ACTIONS(1089), - [anon_sym_break] = ACTIONS(1089), - [anon_sym_continue] = ACTIONS(1089), - [anon_sym_return] = ACTIONS(1089), - [anon_sym_yield] = ACTIONS(1089), - [anon_sym_synchronized] = ACTIONS(1089), - [anon_sym_throw] = ACTIONS(1089), - [anon_sym_try] = ACTIONS(1089), - [anon_sym_if] = ACTIONS(1089), - [anon_sym_else] = ACTIONS(1089), - [anon_sym_for] = ACTIONS(1089), - [anon_sym_AT] = ACTIONS(1089), - [anon_sym_open] = ACTIONS(1089), - [anon_sym_module] = ACTIONS(1089), - [anon_sym_static] = ACTIONS(1089), - [anon_sym_with] = ACTIONS(1089), - [anon_sym_package] = ACTIONS(1089), - [anon_sym_import] = ACTIONS(1089), - [anon_sym_enum] = ACTIONS(1089), - [anon_sym_public] = ACTIONS(1089), - [anon_sym_protected] = ACTIONS(1089), - [anon_sym_private] = ACTIONS(1089), - [anon_sym_abstract] = ACTIONS(1089), - [anon_sym_strictfp] = ACTIONS(1089), - [anon_sym_native] = ACTIONS(1089), - [anon_sym_transient] = ACTIONS(1089), - [anon_sym_volatile] = ACTIONS(1089), - [anon_sym_sealed] = ACTIONS(1089), - [anon_sym_non_DASHsealed] = ACTIONS(1087), - [anon_sym_record] = ACTIONS(1089), - [anon_sym_ATinterface] = ACTIONS(1087), - [anon_sym_interface] = ACTIONS(1089), - [anon_sym_byte] = ACTIONS(1089), - [anon_sym_short] = ACTIONS(1089), - [anon_sym_int] = ACTIONS(1089), - [anon_sym_long] = ACTIONS(1089), - [anon_sym_char] = ACTIONS(1089), - [anon_sym_float] = ACTIONS(1089), - [anon_sym_double] = ACTIONS(1089), - [sym_boolean_type] = ACTIONS(1089), - [sym_void_type] = ACTIONS(1089), - [sym_this] = ACTIONS(1089), - [sym_super] = ACTIONS(1089), + [STATE(362)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(686), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1091), - [sym_identifier] = ACTIONS(1093), - [sym_decimal_integer_literal] = ACTIONS(1093), - [sym_hex_integer_literal] = ACTIONS(1093), - [sym_octal_integer_literal] = ACTIONS(1093), - [sym_binary_integer_literal] = ACTIONS(1091), - [sym_decimal_floating_point_literal] = ACTIONS(1091), - [sym_hex_floating_point_literal] = ACTIONS(1093), - [sym_true] = ACTIONS(1093), - [sym_false] = ACTIONS(1093), - [sym_character_literal] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1091), - [anon_sym_RBRACE] = ACTIONS(1091), - [sym_null_literal] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1091), - [anon_sym_LT] = ACTIONS(1091), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_final] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_TILDE] = ACTIONS(1091), - [anon_sym_PLUS_PLUS] = ACTIONS(1091), - [anon_sym_DASH_DASH] = ACTIONS(1091), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_class] = ACTIONS(1093), - [anon_sym_switch] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1091), - [anon_sym_case] = ACTIONS(1093), - [anon_sym_default] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1091), - [anon_sym_assert] = ACTIONS(1093), - [anon_sym_do] = ACTIONS(1093), - [anon_sym_while] = ACTIONS(1093), - [anon_sym_break] = ACTIONS(1093), - [anon_sym_continue] = ACTIONS(1093), - [anon_sym_return] = ACTIONS(1093), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_synchronized] = ACTIONS(1093), - [anon_sym_throw] = ACTIONS(1093), - [anon_sym_try] = ACTIONS(1093), - [anon_sym_if] = ACTIONS(1093), - [anon_sym_else] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1093), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_open] = ACTIONS(1093), - [anon_sym_module] = ACTIONS(1093), - [anon_sym_static] = ACTIONS(1093), - [anon_sym_with] = ACTIONS(1093), - [anon_sym_package] = ACTIONS(1093), - [anon_sym_import] = ACTIONS(1093), - [anon_sym_enum] = ACTIONS(1093), - [anon_sym_public] = ACTIONS(1093), - [anon_sym_protected] = ACTIONS(1093), - [anon_sym_private] = ACTIONS(1093), - [anon_sym_abstract] = ACTIONS(1093), - [anon_sym_strictfp] = ACTIONS(1093), - [anon_sym_native] = ACTIONS(1093), - [anon_sym_transient] = ACTIONS(1093), - [anon_sym_volatile] = ACTIONS(1093), - [anon_sym_sealed] = ACTIONS(1093), - [anon_sym_non_DASHsealed] = ACTIONS(1091), - [anon_sym_record] = ACTIONS(1093), - [anon_sym_ATinterface] = ACTIONS(1091), - [anon_sym_interface] = ACTIONS(1093), - [anon_sym_byte] = ACTIONS(1093), - [anon_sym_short] = ACTIONS(1093), - [anon_sym_int] = ACTIONS(1093), - [anon_sym_long] = ACTIONS(1093), - [anon_sym_char] = ACTIONS(1093), - [anon_sym_float] = ACTIONS(1093), - [anon_sym_double] = ACTIONS(1093), - [sym_boolean_type] = ACTIONS(1093), - [sym_void_type] = ACTIONS(1093), - [sym_this] = ACTIONS(1093), - [sym_super] = ACTIONS(1093), + [STATE(363)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(564), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_identifier] = ACTIONS(1097), - [sym_decimal_integer_literal] = ACTIONS(1097), - [sym_hex_integer_literal] = ACTIONS(1097), - [sym_octal_integer_literal] = ACTIONS(1097), - [sym_binary_integer_literal] = ACTIONS(1095), - [sym_decimal_floating_point_literal] = ACTIONS(1095), - [sym_hex_floating_point_literal] = ACTIONS(1097), - [sym_true] = ACTIONS(1097), - [sym_false] = ACTIONS(1097), - [sym_character_literal] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1097), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1095), - [sym_null_literal] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_final] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_new] = ACTIONS(1097), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_switch] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_case] = ACTIONS(1097), - [anon_sym_default] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_assert] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_break] = ACTIONS(1097), - [anon_sym_continue] = ACTIONS(1097), - [anon_sym_return] = ACTIONS(1097), - [anon_sym_yield] = ACTIONS(1097), - [anon_sym_synchronized] = ACTIONS(1097), - [anon_sym_throw] = ACTIONS(1097), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_else] = ACTIONS(1097), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_AT] = ACTIONS(1097), - [anon_sym_open] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_with] = ACTIONS(1097), - [anon_sym_package] = ACTIONS(1097), - [anon_sym_import] = ACTIONS(1097), - [anon_sym_enum] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_abstract] = ACTIONS(1097), - [anon_sym_strictfp] = ACTIONS(1097), - [anon_sym_native] = ACTIONS(1097), - [anon_sym_transient] = ACTIONS(1097), - [anon_sym_volatile] = ACTIONS(1097), - [anon_sym_sealed] = ACTIONS(1097), - [anon_sym_non_DASHsealed] = ACTIONS(1095), - [anon_sym_record] = ACTIONS(1097), - [anon_sym_ATinterface] = ACTIONS(1095), - [anon_sym_interface] = ACTIONS(1097), - [anon_sym_byte] = ACTIONS(1097), - [anon_sym_short] = ACTIONS(1097), - [anon_sym_int] = ACTIONS(1097), - [anon_sym_long] = ACTIONS(1097), - [anon_sym_char] = ACTIONS(1097), - [anon_sym_float] = ACTIONS(1097), - [anon_sym_double] = ACTIONS(1097), - [sym_boolean_type] = ACTIONS(1097), - [sym_void_type] = ACTIONS(1097), - [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(1097), + [STATE(364)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(679), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [366] = { - [ts_builtin_sym_end] = ACTIONS(1099), - [sym_identifier] = ACTIONS(1101), - [sym_decimal_integer_literal] = ACTIONS(1101), - [sym_hex_integer_literal] = ACTIONS(1101), - [sym_octal_integer_literal] = ACTIONS(1101), - [sym_binary_integer_literal] = ACTIONS(1099), - [sym_decimal_floating_point_literal] = ACTIONS(1099), - [sym_hex_floating_point_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(1101), - [sym_false] = ACTIONS(1101), - [sym_character_literal] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1099), - [sym_null_literal] = ACTIONS(1101), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_final] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_new] = ACTIONS(1101), - [anon_sym_class] = ACTIONS(1101), - [anon_sym_switch] = ACTIONS(1101), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_case] = ACTIONS(1101), - [anon_sym_default] = ACTIONS(1101), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_assert] = ACTIONS(1101), - [anon_sym_do] = ACTIONS(1101), - [anon_sym_while] = ACTIONS(1101), - [anon_sym_break] = ACTIONS(1101), - [anon_sym_continue] = ACTIONS(1101), - [anon_sym_return] = ACTIONS(1101), - [anon_sym_yield] = ACTIONS(1101), - [anon_sym_synchronized] = ACTIONS(1101), - [anon_sym_throw] = ACTIONS(1101), - [anon_sym_try] = ACTIONS(1101), - [anon_sym_if] = ACTIONS(1101), - [anon_sym_else] = ACTIONS(1101), - [anon_sym_for] = ACTIONS(1101), - [anon_sym_AT] = ACTIONS(1101), - [anon_sym_open] = ACTIONS(1101), - [anon_sym_module] = ACTIONS(1101), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_with] = ACTIONS(1101), - [anon_sym_package] = ACTIONS(1101), - [anon_sym_import] = ACTIONS(1101), - [anon_sym_enum] = ACTIONS(1101), - [anon_sym_public] = ACTIONS(1101), - [anon_sym_protected] = ACTIONS(1101), - [anon_sym_private] = ACTIONS(1101), - [anon_sym_abstract] = ACTIONS(1101), - [anon_sym_strictfp] = ACTIONS(1101), - [anon_sym_native] = ACTIONS(1101), - [anon_sym_transient] = ACTIONS(1101), - [anon_sym_volatile] = ACTIONS(1101), - [anon_sym_sealed] = ACTIONS(1101), - [anon_sym_non_DASHsealed] = ACTIONS(1099), - [anon_sym_record] = ACTIONS(1101), - [anon_sym_ATinterface] = ACTIONS(1099), - [anon_sym_interface] = ACTIONS(1101), - [anon_sym_byte] = ACTIONS(1101), - [anon_sym_short] = ACTIONS(1101), - [anon_sym_int] = ACTIONS(1101), - [anon_sym_long] = ACTIONS(1101), - [anon_sym_char] = ACTIONS(1101), - [anon_sym_float] = ACTIONS(1101), - [anon_sym_double] = ACTIONS(1101), - [sym_boolean_type] = ACTIONS(1101), - [sym_void_type] = ACTIONS(1101), - [sym_this] = ACTIONS(1101), - [sym_super] = ACTIONS(1101), + [STATE(365)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(690), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(1103), - [sym_identifier] = ACTIONS(1105), - [sym_decimal_integer_literal] = ACTIONS(1105), - [sym_hex_integer_literal] = ACTIONS(1105), - [sym_octal_integer_literal] = ACTIONS(1105), - [sym_binary_integer_literal] = ACTIONS(1103), - [sym_decimal_floating_point_literal] = ACTIONS(1103), - [sym_hex_floating_point_literal] = ACTIONS(1105), - [sym_true] = ACTIONS(1105), - [sym_false] = ACTIONS(1105), - [sym_character_literal] = ACTIONS(1103), - [anon_sym_DQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1103), - [anon_sym_RBRACE] = ACTIONS(1103), - [sym_null_literal] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_LT] = ACTIONS(1103), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_final] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_PLUS_PLUS] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(1103), - [anon_sym_new] = ACTIONS(1105), - [anon_sym_class] = ACTIONS(1105), - [anon_sym_switch] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1103), - [anon_sym_case] = ACTIONS(1105), - [anon_sym_default] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym_assert] = ACTIONS(1105), - [anon_sym_do] = ACTIONS(1105), - [anon_sym_while] = ACTIONS(1105), - [anon_sym_break] = ACTIONS(1105), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1105), - [anon_sym_yield] = ACTIONS(1105), - [anon_sym_synchronized] = ACTIONS(1105), - [anon_sym_throw] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1105), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1105), - [anon_sym_for] = ACTIONS(1105), - [anon_sym_AT] = ACTIONS(1105), - [anon_sym_open] = ACTIONS(1105), - [anon_sym_module] = ACTIONS(1105), - [anon_sym_static] = ACTIONS(1105), - [anon_sym_with] = ACTIONS(1105), - [anon_sym_package] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(1105), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_public] = ACTIONS(1105), - [anon_sym_protected] = ACTIONS(1105), - [anon_sym_private] = ACTIONS(1105), - [anon_sym_abstract] = ACTIONS(1105), - [anon_sym_strictfp] = ACTIONS(1105), - [anon_sym_native] = ACTIONS(1105), - [anon_sym_transient] = ACTIONS(1105), - [anon_sym_volatile] = ACTIONS(1105), - [anon_sym_sealed] = ACTIONS(1105), - [anon_sym_non_DASHsealed] = ACTIONS(1103), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_ATinterface] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1105), - [anon_sym_byte] = ACTIONS(1105), - [anon_sym_short] = ACTIONS(1105), - [anon_sym_int] = ACTIONS(1105), - [anon_sym_long] = ACTIONS(1105), - [anon_sym_char] = ACTIONS(1105), - [anon_sym_float] = ACTIONS(1105), - [anon_sym_double] = ACTIONS(1105), - [sym_boolean_type] = ACTIONS(1105), - [sym_void_type] = ACTIONS(1105), - [sym_this] = ACTIONS(1105), - [sym_super] = ACTIONS(1105), + [STATE(366)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(693), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [368] = { - [ts_builtin_sym_end] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1109), - [sym_decimal_integer_literal] = ACTIONS(1109), - [sym_hex_integer_literal] = ACTIONS(1109), - [sym_octal_integer_literal] = ACTIONS(1109), - [sym_binary_integer_literal] = ACTIONS(1107), - [sym_decimal_floating_point_literal] = ACTIONS(1107), - [sym_hex_floating_point_literal] = ACTIONS(1109), - [sym_true] = ACTIONS(1109), - [sym_false] = ACTIONS(1109), - [sym_character_literal] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1107), - [sym_null_literal] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_final] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1107), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_class] = ACTIONS(1109), - [anon_sym_switch] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_case] = ACTIONS(1109), - [anon_sym_default] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1107), - [anon_sym_assert] = ACTIONS(1109), - [anon_sym_do] = ACTIONS(1109), - [anon_sym_while] = ACTIONS(1109), - [anon_sym_break] = ACTIONS(1109), - [anon_sym_continue] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1109), - [anon_sym_yield] = ACTIONS(1109), - [anon_sym_synchronized] = ACTIONS(1109), - [anon_sym_throw] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1109), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(1109), - [anon_sym_for] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1109), - [anon_sym_open] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_with] = ACTIONS(1109), - [anon_sym_package] = ACTIONS(1109), - [anon_sym_import] = ACTIONS(1109), - [anon_sym_enum] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_abstract] = ACTIONS(1109), - [anon_sym_strictfp] = ACTIONS(1109), - [anon_sym_native] = ACTIONS(1109), - [anon_sym_transient] = ACTIONS(1109), - [anon_sym_volatile] = ACTIONS(1109), - [anon_sym_sealed] = ACTIONS(1109), - [anon_sym_non_DASHsealed] = ACTIONS(1107), - [anon_sym_record] = ACTIONS(1109), - [anon_sym_ATinterface] = ACTIONS(1107), - [anon_sym_interface] = ACTIONS(1109), - [anon_sym_byte] = ACTIONS(1109), - [anon_sym_short] = ACTIONS(1109), - [anon_sym_int] = ACTIONS(1109), - [anon_sym_long] = ACTIONS(1109), - [anon_sym_char] = ACTIONS(1109), - [anon_sym_float] = ACTIONS(1109), - [anon_sym_double] = ACTIONS(1109), - [sym_boolean_type] = ACTIONS(1109), - [sym_void_type] = ACTIONS(1109), - [sym_this] = ACTIONS(1109), - [sym_super] = ACTIONS(1109), + [STATE(367)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(568), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1111), - [sym_identifier] = ACTIONS(1113), - [sym_decimal_integer_literal] = ACTIONS(1113), - [sym_hex_integer_literal] = ACTIONS(1113), - [sym_octal_integer_literal] = ACTIONS(1113), - [sym_binary_integer_literal] = ACTIONS(1111), - [sym_decimal_floating_point_literal] = ACTIONS(1111), - [sym_hex_floating_point_literal] = ACTIONS(1113), - [sym_true] = ACTIONS(1113), - [sym_false] = ACTIONS(1113), - [sym_character_literal] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1113), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1111), - [anon_sym_RBRACE] = ACTIONS(1111), - [sym_null_literal] = ACTIONS(1113), - [anon_sym_LPAREN] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_PLUS] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1113), - [anon_sym_final] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_PLUS_PLUS] = ACTIONS(1111), - [anon_sym_DASH_DASH] = ACTIONS(1111), - [anon_sym_new] = ACTIONS(1113), - [anon_sym_class] = ACTIONS(1113), - [anon_sym_switch] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1111), - [anon_sym_case] = ACTIONS(1113), - [anon_sym_default] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1111), - [anon_sym_assert] = ACTIONS(1113), - [anon_sym_do] = ACTIONS(1113), - [anon_sym_while] = ACTIONS(1113), - [anon_sym_break] = ACTIONS(1113), - [anon_sym_continue] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1113), - [anon_sym_yield] = ACTIONS(1113), - [anon_sym_synchronized] = ACTIONS(1113), - [anon_sym_throw] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_if] = ACTIONS(1113), - [anon_sym_else] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(1113), - [anon_sym_open] = ACTIONS(1113), - [anon_sym_module] = ACTIONS(1113), - [anon_sym_static] = ACTIONS(1113), - [anon_sym_with] = ACTIONS(1113), - [anon_sym_package] = ACTIONS(1113), - [anon_sym_import] = ACTIONS(1113), - [anon_sym_enum] = ACTIONS(1113), - [anon_sym_public] = ACTIONS(1113), - [anon_sym_protected] = ACTIONS(1113), - [anon_sym_private] = ACTIONS(1113), - [anon_sym_abstract] = ACTIONS(1113), - [anon_sym_strictfp] = ACTIONS(1113), - [anon_sym_native] = ACTIONS(1113), - [anon_sym_transient] = ACTIONS(1113), - [anon_sym_volatile] = ACTIONS(1113), - [anon_sym_sealed] = ACTIONS(1113), - [anon_sym_non_DASHsealed] = ACTIONS(1111), - [anon_sym_record] = ACTIONS(1113), - [anon_sym_ATinterface] = ACTIONS(1111), - [anon_sym_interface] = ACTIONS(1113), - [anon_sym_byte] = ACTIONS(1113), - [anon_sym_short] = ACTIONS(1113), - [anon_sym_int] = ACTIONS(1113), - [anon_sym_long] = ACTIONS(1113), - [anon_sym_char] = ACTIONS(1113), - [anon_sym_float] = ACTIONS(1113), - [anon_sym_double] = ACTIONS(1113), - [sym_boolean_type] = ACTIONS(1113), - [sym_void_type] = ACTIONS(1113), - [sym_this] = ACTIONS(1113), - [sym_super] = ACTIONS(1113), + [STATE(368)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(592), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [370] = { - [ts_builtin_sym_end] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1117), - [sym_decimal_integer_literal] = ACTIONS(1117), - [sym_hex_integer_literal] = ACTIONS(1117), - [sym_octal_integer_literal] = ACTIONS(1117), - [sym_binary_integer_literal] = ACTIONS(1115), - [sym_decimal_floating_point_literal] = ACTIONS(1115), - [sym_hex_floating_point_literal] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_character_literal] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1117), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1115), - [anon_sym_RBRACE] = ACTIONS(1115), - [sym_null_literal] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_PLUS] = ACTIONS(1117), - [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_final] = ACTIONS(1117), - [anon_sym_BANG] = ACTIONS(1115), - [anon_sym_TILDE] = ACTIONS(1115), - [anon_sym_PLUS_PLUS] = ACTIONS(1115), - [anon_sym_DASH_DASH] = ACTIONS(1115), - [anon_sym_new] = ACTIONS(1117), - [anon_sym_class] = ACTIONS(1117), - [anon_sym_switch] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1115), - [anon_sym_case] = ACTIONS(1117), - [anon_sym_default] = ACTIONS(1117), - [anon_sym_SEMI] = ACTIONS(1115), - [anon_sym_assert] = ACTIONS(1117), - [anon_sym_do] = ACTIONS(1117), - [anon_sym_while] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1117), - [anon_sym_continue] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1117), - [anon_sym_yield] = ACTIONS(1117), - [anon_sym_synchronized] = ACTIONS(1117), - [anon_sym_throw] = ACTIONS(1117), - [anon_sym_try] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1117), - [anon_sym_else] = ACTIONS(1117), - [anon_sym_for] = ACTIONS(1117), - [anon_sym_AT] = ACTIONS(1117), - [anon_sym_open] = ACTIONS(1117), - [anon_sym_module] = ACTIONS(1117), - [anon_sym_static] = ACTIONS(1117), - [anon_sym_with] = ACTIONS(1117), - [anon_sym_package] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(1117), - [anon_sym_enum] = ACTIONS(1117), - [anon_sym_public] = ACTIONS(1117), - [anon_sym_protected] = ACTIONS(1117), - [anon_sym_private] = ACTIONS(1117), - [anon_sym_abstract] = ACTIONS(1117), - [anon_sym_strictfp] = ACTIONS(1117), - [anon_sym_native] = ACTIONS(1117), - [anon_sym_transient] = ACTIONS(1117), - [anon_sym_volatile] = ACTIONS(1117), - [anon_sym_sealed] = ACTIONS(1117), - [anon_sym_non_DASHsealed] = ACTIONS(1115), - [anon_sym_record] = ACTIONS(1117), - [anon_sym_ATinterface] = ACTIONS(1115), - [anon_sym_interface] = ACTIONS(1117), - [anon_sym_byte] = ACTIONS(1117), - [anon_sym_short] = ACTIONS(1117), - [anon_sym_int] = ACTIONS(1117), - [anon_sym_long] = ACTIONS(1117), - [anon_sym_char] = ACTIONS(1117), - [anon_sym_float] = ACTIONS(1117), - [anon_sym_double] = ACTIONS(1117), - [sym_boolean_type] = ACTIONS(1117), - [sym_void_type] = ACTIONS(1117), - [sym_this] = ACTIONS(1117), - [sym_super] = ACTIONS(1117), + [STATE(369)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(684), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [371] = { - [ts_builtin_sym_end] = ACTIONS(1119), - [sym_identifier] = ACTIONS(1121), - [sym_decimal_integer_literal] = ACTIONS(1121), - [sym_hex_integer_literal] = ACTIONS(1121), - [sym_octal_integer_literal] = ACTIONS(1121), - [sym_binary_integer_literal] = ACTIONS(1119), - [sym_decimal_floating_point_literal] = ACTIONS(1119), - [sym_hex_floating_point_literal] = ACTIONS(1121), - [sym_true] = ACTIONS(1121), - [sym_false] = ACTIONS(1121), - [sym_character_literal] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1121), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [sym_null_literal] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_final] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_new] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_case] = ACTIONS(1121), - [anon_sym_default] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_assert] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_break] = ACTIONS(1121), - [anon_sym_continue] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1121), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_synchronized] = ACTIONS(1121), - [anon_sym_throw] = ACTIONS(1121), - [anon_sym_try] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_package] = ACTIONS(1121), - [anon_sym_import] = ACTIONS(1121), - [anon_sym_enum] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1121), - [anon_sym_protected] = ACTIONS(1121), - [anon_sym_private] = ACTIONS(1121), - [anon_sym_abstract] = ACTIONS(1121), - [anon_sym_strictfp] = ACTIONS(1121), - [anon_sym_native] = ACTIONS(1121), - [anon_sym_transient] = ACTIONS(1121), - [anon_sym_volatile] = ACTIONS(1121), - [anon_sym_sealed] = ACTIONS(1121), - [anon_sym_non_DASHsealed] = ACTIONS(1119), - [anon_sym_record] = ACTIONS(1121), - [anon_sym_ATinterface] = ACTIONS(1119), - [anon_sym_interface] = ACTIONS(1121), - [anon_sym_byte] = ACTIONS(1121), - [anon_sym_short] = ACTIONS(1121), - [anon_sym_int] = ACTIONS(1121), - [anon_sym_long] = ACTIONS(1121), - [anon_sym_char] = ACTIONS(1121), - [anon_sym_float] = ACTIONS(1121), - [anon_sym_double] = ACTIONS(1121), - [sym_boolean_type] = ACTIONS(1121), - [sym_void_type] = ACTIONS(1121), - [sym_this] = ACTIONS(1121), - [sym_super] = ACTIONS(1121), + [STATE(370)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(674), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [372] = { - [ts_builtin_sym_end] = ACTIONS(1123), - [sym_identifier] = ACTIONS(1125), - [sym_decimal_integer_literal] = ACTIONS(1125), - [sym_hex_integer_literal] = ACTIONS(1125), - [sym_octal_integer_literal] = ACTIONS(1125), - [sym_binary_integer_literal] = ACTIONS(1123), - [sym_decimal_floating_point_literal] = ACTIONS(1123), - [sym_hex_floating_point_literal] = ACTIONS(1125), - [sym_true] = ACTIONS(1125), - [sym_false] = ACTIONS(1125), - [sym_character_literal] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(1125), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1123), - [anon_sym_RBRACE] = ACTIONS(1123), - [sym_null_literal] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1123), - [anon_sym_LT] = ACTIONS(1123), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_final] = ACTIONS(1125), - [anon_sym_BANG] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_PLUS_PLUS] = ACTIONS(1123), - [anon_sym_DASH_DASH] = ACTIONS(1123), - [anon_sym_new] = ACTIONS(1125), - [anon_sym_class] = ACTIONS(1125), - [anon_sym_switch] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_case] = ACTIONS(1125), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_assert] = ACTIONS(1125), - [anon_sym_do] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1125), - [anon_sym_break] = ACTIONS(1125), - [anon_sym_continue] = ACTIONS(1125), - [anon_sym_return] = ACTIONS(1125), - [anon_sym_yield] = ACTIONS(1125), - [anon_sym_synchronized] = ACTIONS(1125), - [anon_sym_throw] = ACTIONS(1125), - [anon_sym_try] = ACTIONS(1125), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1125), - [anon_sym_for] = ACTIONS(1125), - [anon_sym_AT] = ACTIONS(1125), - [anon_sym_open] = ACTIONS(1125), - [anon_sym_module] = ACTIONS(1125), - [anon_sym_static] = ACTIONS(1125), - [anon_sym_with] = ACTIONS(1125), - [anon_sym_package] = ACTIONS(1125), - [anon_sym_import] = ACTIONS(1125), - [anon_sym_enum] = ACTIONS(1125), - [anon_sym_public] = ACTIONS(1125), - [anon_sym_protected] = ACTIONS(1125), - [anon_sym_private] = ACTIONS(1125), - [anon_sym_abstract] = ACTIONS(1125), - [anon_sym_strictfp] = ACTIONS(1125), - [anon_sym_native] = ACTIONS(1125), - [anon_sym_transient] = ACTIONS(1125), - [anon_sym_volatile] = ACTIONS(1125), - [anon_sym_sealed] = ACTIONS(1125), - [anon_sym_non_DASHsealed] = ACTIONS(1123), - [anon_sym_record] = ACTIONS(1125), - [anon_sym_ATinterface] = ACTIONS(1123), - [anon_sym_interface] = ACTIONS(1125), - [anon_sym_byte] = ACTIONS(1125), - [anon_sym_short] = ACTIONS(1125), - [anon_sym_int] = ACTIONS(1125), - [anon_sym_long] = ACTIONS(1125), - [anon_sym_char] = ACTIONS(1125), - [anon_sym_float] = ACTIONS(1125), - [anon_sym_double] = ACTIONS(1125), - [sym_boolean_type] = ACTIONS(1125), - [sym_void_type] = ACTIONS(1125), - [sym_this] = ACTIONS(1125), - [sym_super] = ACTIONS(1125), + [STATE(371)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(706), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [373] = { - [ts_builtin_sym_end] = ACTIONS(480), - [sym_identifier] = ACTIONS(478), - [sym_decimal_integer_literal] = ACTIONS(478), - [sym_hex_integer_literal] = ACTIONS(478), - [sym_octal_integer_literal] = ACTIONS(478), - [sym_binary_integer_literal] = ACTIONS(480), - [sym_decimal_floating_point_literal] = ACTIONS(480), - [sym_hex_floating_point_literal] = ACTIONS(478), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_character_literal] = ACTIONS(480), - [anon_sym_DQUOTE] = ACTIONS(478), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [sym_null_literal] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_final] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_new] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_case] = ACTIONS(478), - [anon_sym_default] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_assert] = ACTIONS(478), - [anon_sym_do] = ACTIONS(478), - [anon_sym_while] = ACTIONS(478), - [anon_sym_break] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(478), - [anon_sym_return] = ACTIONS(478), - [anon_sym_yield] = ACTIONS(478), - [anon_sym_synchronized] = ACTIONS(478), - [anon_sym_throw] = ACTIONS(478), - [anon_sym_try] = ACTIONS(478), - [anon_sym_if] = ACTIONS(478), - [anon_sym_else] = ACTIONS(478), - [anon_sym_for] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_open] = ACTIONS(478), - [anon_sym_module] = ACTIONS(478), - [anon_sym_static] = ACTIONS(478), - [anon_sym_with] = ACTIONS(478), - [anon_sym_package] = ACTIONS(478), - [anon_sym_import] = ACTIONS(478), - [anon_sym_enum] = ACTIONS(478), - [anon_sym_public] = ACTIONS(478), - [anon_sym_protected] = ACTIONS(478), - [anon_sym_private] = ACTIONS(478), - [anon_sym_abstract] = ACTIONS(478), - [anon_sym_strictfp] = ACTIONS(478), - [anon_sym_native] = ACTIONS(478), - [anon_sym_transient] = ACTIONS(478), - [anon_sym_volatile] = ACTIONS(478), - [anon_sym_sealed] = ACTIONS(478), - [anon_sym_non_DASHsealed] = ACTIONS(480), - [anon_sym_record] = ACTIONS(478), - [anon_sym_ATinterface] = ACTIONS(480), - [anon_sym_interface] = ACTIONS(478), - [anon_sym_byte] = ACTIONS(478), - [anon_sym_short] = ACTIONS(478), - [anon_sym_int] = ACTIONS(478), - [anon_sym_long] = ACTIONS(478), - [anon_sym_char] = ACTIONS(478), - [anon_sym_float] = ACTIONS(478), - [anon_sym_double] = ACTIONS(478), - [sym_boolean_type] = ACTIONS(478), - [sym_void_type] = ACTIONS(478), - [sym_this] = ACTIONS(478), - [sym_super] = ACTIONS(478), + [STATE(372)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(675), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [374] = { - [ts_builtin_sym_end] = ACTIONS(1127), - [sym_identifier] = ACTIONS(1129), - [sym_decimal_integer_literal] = ACTIONS(1129), - [sym_hex_integer_literal] = ACTIONS(1129), - [sym_octal_integer_literal] = ACTIONS(1129), - [sym_binary_integer_literal] = ACTIONS(1127), - [sym_decimal_floating_point_literal] = ACTIONS(1127), - [sym_hex_floating_point_literal] = ACTIONS(1129), - [sym_true] = ACTIONS(1129), - [sym_false] = ACTIONS(1129), - [sym_character_literal] = ACTIONS(1127), - [anon_sym_DQUOTE] = ACTIONS(1129), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1127), - [sym_null_literal] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1127), - [anon_sym_LT] = ACTIONS(1127), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_final] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_TILDE] = ACTIONS(1127), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_new] = ACTIONS(1129), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_switch] = ACTIONS(1129), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_case] = ACTIONS(1129), - [anon_sym_default] = ACTIONS(1129), - [anon_sym_SEMI] = ACTIONS(1127), - [anon_sym_assert] = ACTIONS(1129), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_while] = ACTIONS(1129), - [anon_sym_break] = ACTIONS(1129), - [anon_sym_continue] = ACTIONS(1129), - [anon_sym_return] = ACTIONS(1129), - [anon_sym_yield] = ACTIONS(1129), - [anon_sym_synchronized] = ACTIONS(1129), - [anon_sym_throw] = ACTIONS(1129), - [anon_sym_try] = ACTIONS(1129), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1129), - [anon_sym_AT] = ACTIONS(1129), - [anon_sym_open] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_with] = ACTIONS(1129), - [anon_sym_package] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(1129), - [anon_sym_strictfp] = ACTIONS(1129), - [anon_sym_native] = ACTIONS(1129), - [anon_sym_transient] = ACTIONS(1129), - [anon_sym_volatile] = ACTIONS(1129), - [anon_sym_sealed] = ACTIONS(1129), - [anon_sym_non_DASHsealed] = ACTIONS(1127), - [anon_sym_record] = ACTIONS(1129), - [anon_sym_ATinterface] = ACTIONS(1127), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_byte] = ACTIONS(1129), - [anon_sym_short] = ACTIONS(1129), - [anon_sym_int] = ACTIONS(1129), - [anon_sym_long] = ACTIONS(1129), - [anon_sym_char] = ACTIONS(1129), - [anon_sym_float] = ACTIONS(1129), - [anon_sym_double] = ACTIONS(1129), - [sym_boolean_type] = ACTIONS(1129), - [sym_void_type] = ACTIONS(1129), - [sym_this] = ACTIONS(1129), - [sym_super] = ACTIONS(1129), + [STATE(373)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(681), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [375] = { - [ts_builtin_sym_end] = ACTIONS(1131), - [sym_identifier] = ACTIONS(1133), - [sym_decimal_integer_literal] = ACTIONS(1133), - [sym_hex_integer_literal] = ACTIONS(1133), - [sym_octal_integer_literal] = ACTIONS(1133), - [sym_binary_integer_literal] = ACTIONS(1131), - [sym_decimal_floating_point_literal] = ACTIONS(1131), - [sym_hex_floating_point_literal] = ACTIONS(1133), - [sym_true] = ACTIONS(1133), - [sym_false] = ACTIONS(1133), - [sym_character_literal] = ACTIONS(1131), - [anon_sym_DQUOTE] = ACTIONS(1133), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1131), - [anon_sym_RBRACE] = ACTIONS(1131), - [sym_null_literal] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1131), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_final] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1131), - [anon_sym_TILDE] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1131), - [anon_sym_DASH_DASH] = ACTIONS(1131), - [anon_sym_new] = ACTIONS(1133), - [anon_sym_class] = ACTIONS(1133), - [anon_sym_switch] = ACTIONS(1133), - [anon_sym_LBRACE] = ACTIONS(1131), - [anon_sym_case] = ACTIONS(1133), - [anon_sym_default] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1131), - [anon_sym_assert] = ACTIONS(1133), - [anon_sym_do] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1133), - [anon_sym_continue] = ACTIONS(1133), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1133), - [anon_sym_synchronized] = ACTIONS(1133), - [anon_sym_throw] = ACTIONS(1133), - [anon_sym_try] = ACTIONS(1133), - [anon_sym_if] = ACTIONS(1133), - [anon_sym_else] = ACTIONS(1133), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1133), - [anon_sym_open] = ACTIONS(1133), - [anon_sym_module] = ACTIONS(1133), - [anon_sym_static] = ACTIONS(1133), - [anon_sym_with] = ACTIONS(1133), - [anon_sym_package] = ACTIONS(1133), - [anon_sym_import] = ACTIONS(1133), - [anon_sym_enum] = ACTIONS(1133), - [anon_sym_public] = ACTIONS(1133), - [anon_sym_protected] = ACTIONS(1133), - [anon_sym_private] = ACTIONS(1133), - [anon_sym_abstract] = ACTIONS(1133), - [anon_sym_strictfp] = ACTIONS(1133), - [anon_sym_native] = ACTIONS(1133), - [anon_sym_transient] = ACTIONS(1133), - [anon_sym_volatile] = ACTIONS(1133), - [anon_sym_sealed] = ACTIONS(1133), - [anon_sym_non_DASHsealed] = ACTIONS(1131), - [anon_sym_record] = ACTIONS(1133), - [anon_sym_ATinterface] = ACTIONS(1131), - [anon_sym_interface] = ACTIONS(1133), - [anon_sym_byte] = ACTIONS(1133), - [anon_sym_short] = ACTIONS(1133), - [anon_sym_int] = ACTIONS(1133), - [anon_sym_long] = ACTIONS(1133), - [anon_sym_char] = ACTIONS(1133), - [anon_sym_float] = ACTIONS(1133), - [anon_sym_double] = ACTIONS(1133), - [sym_boolean_type] = ACTIONS(1133), - [sym_void_type] = ACTIONS(1133), - [sym_this] = ACTIONS(1133), - [sym_super] = ACTIONS(1133), + [STATE(374)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(586), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [376] = { - [ts_builtin_sym_end] = ACTIONS(1135), - [sym_identifier] = ACTIONS(1137), - [sym_decimal_integer_literal] = ACTIONS(1137), - [sym_hex_integer_literal] = ACTIONS(1137), - [sym_octal_integer_literal] = ACTIONS(1137), - [sym_binary_integer_literal] = ACTIONS(1135), - [sym_decimal_floating_point_literal] = ACTIONS(1135), - [sym_hex_floating_point_literal] = ACTIONS(1137), - [sym_true] = ACTIONS(1137), - [sym_false] = ACTIONS(1137), - [sym_character_literal] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), - [anon_sym_RBRACE] = ACTIONS(1135), - [sym_null_literal] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1137), - [anon_sym_DASH] = ACTIONS(1137), - [anon_sym_final] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1135), - [anon_sym_DASH_DASH] = ACTIONS(1135), - [anon_sym_new] = ACTIONS(1137), - [anon_sym_class] = ACTIONS(1137), - [anon_sym_switch] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_case] = ACTIONS(1137), - [anon_sym_default] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_assert] = ACTIONS(1137), - [anon_sym_do] = ACTIONS(1137), - [anon_sym_while] = ACTIONS(1137), - [anon_sym_break] = ACTIONS(1137), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_return] = ACTIONS(1137), - [anon_sym_yield] = ACTIONS(1137), - [anon_sym_synchronized] = ACTIONS(1137), - [anon_sym_throw] = ACTIONS(1137), - [anon_sym_try] = ACTIONS(1137), - [anon_sym_if] = ACTIONS(1137), - [anon_sym_else] = ACTIONS(1137), - [anon_sym_for] = ACTIONS(1137), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_open] = ACTIONS(1137), - [anon_sym_module] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1137), - [anon_sym_package] = ACTIONS(1137), - [anon_sym_import] = ACTIONS(1137), - [anon_sym_enum] = ACTIONS(1137), - [anon_sym_public] = ACTIONS(1137), - [anon_sym_protected] = ACTIONS(1137), - [anon_sym_private] = ACTIONS(1137), - [anon_sym_abstract] = ACTIONS(1137), - [anon_sym_strictfp] = ACTIONS(1137), - [anon_sym_native] = ACTIONS(1137), - [anon_sym_transient] = ACTIONS(1137), - [anon_sym_volatile] = ACTIONS(1137), - [anon_sym_sealed] = ACTIONS(1137), - [anon_sym_non_DASHsealed] = ACTIONS(1135), - [anon_sym_record] = ACTIONS(1137), - [anon_sym_ATinterface] = ACTIONS(1135), - [anon_sym_interface] = ACTIONS(1137), - [anon_sym_byte] = ACTIONS(1137), - [anon_sym_short] = ACTIONS(1137), - [anon_sym_int] = ACTIONS(1137), - [anon_sym_long] = ACTIONS(1137), - [anon_sym_char] = ACTIONS(1137), - [anon_sym_float] = ACTIONS(1137), - [anon_sym_double] = ACTIONS(1137), - [sym_boolean_type] = ACTIONS(1137), - [sym_void_type] = ACTIONS(1137), - [sym_this] = ACTIONS(1137), - [sym_super] = ACTIONS(1137), + [STATE(375)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(663), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1139), - [sym_identifier] = ACTIONS(1141), - [sym_decimal_integer_literal] = ACTIONS(1141), - [sym_hex_integer_literal] = ACTIONS(1141), - [sym_octal_integer_literal] = ACTIONS(1141), - [sym_binary_integer_literal] = ACTIONS(1139), - [sym_decimal_floating_point_literal] = ACTIONS(1139), - [sym_hex_floating_point_literal] = ACTIONS(1141), - [sym_true] = ACTIONS(1141), - [sym_false] = ACTIONS(1141), - [sym_character_literal] = ACTIONS(1139), - [anon_sym_DQUOTE] = ACTIONS(1141), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1139), - [anon_sym_RBRACE] = ACTIONS(1139), - [sym_null_literal] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1139), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_final] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1139), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_PLUS_PLUS] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1139), - [anon_sym_new] = ACTIONS(1141), - [anon_sym_class] = ACTIONS(1141), - [anon_sym_switch] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1141), - [anon_sym_default] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_assert] = ACTIONS(1141), - [anon_sym_do] = ACTIONS(1141), - [anon_sym_while] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1141), - [anon_sym_continue] = ACTIONS(1141), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_synchronized] = ACTIONS(1141), - [anon_sym_throw] = ACTIONS(1141), - [anon_sym_try] = ACTIONS(1141), - [anon_sym_if] = ACTIONS(1141), - [anon_sym_else] = ACTIONS(1141), - [anon_sym_for] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1141), - [anon_sym_open] = ACTIONS(1141), - [anon_sym_module] = ACTIONS(1141), - [anon_sym_static] = ACTIONS(1141), - [anon_sym_with] = ACTIONS(1141), - [anon_sym_package] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(1141), - [anon_sym_enum] = ACTIONS(1141), - [anon_sym_public] = ACTIONS(1141), - [anon_sym_protected] = ACTIONS(1141), - [anon_sym_private] = ACTIONS(1141), - [anon_sym_abstract] = ACTIONS(1141), - [anon_sym_strictfp] = ACTIONS(1141), - [anon_sym_native] = ACTIONS(1141), - [anon_sym_transient] = ACTIONS(1141), - [anon_sym_volatile] = ACTIONS(1141), - [anon_sym_sealed] = ACTIONS(1141), - [anon_sym_non_DASHsealed] = ACTIONS(1139), - [anon_sym_record] = ACTIONS(1141), - [anon_sym_ATinterface] = ACTIONS(1139), - [anon_sym_interface] = ACTIONS(1141), - [anon_sym_byte] = ACTIONS(1141), - [anon_sym_short] = ACTIONS(1141), - [anon_sym_int] = ACTIONS(1141), - [anon_sym_long] = ACTIONS(1141), - [anon_sym_char] = ACTIONS(1141), - [anon_sym_float] = ACTIONS(1141), - [anon_sym_double] = ACTIONS(1141), - [sym_boolean_type] = ACTIONS(1141), - [sym_void_type] = ACTIONS(1141), - [sym_this] = ACTIONS(1141), - [sym_super] = ACTIONS(1141), + [STATE(376)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(560), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [378] = { - [ts_builtin_sym_end] = ACTIONS(1143), - [sym_identifier] = ACTIONS(1145), - [sym_decimal_integer_literal] = ACTIONS(1145), - [sym_hex_integer_literal] = ACTIONS(1145), - [sym_octal_integer_literal] = ACTIONS(1145), - [sym_binary_integer_literal] = ACTIONS(1143), - [sym_decimal_floating_point_literal] = ACTIONS(1143), - [sym_hex_floating_point_literal] = ACTIONS(1145), - [sym_true] = ACTIONS(1145), - [sym_false] = ACTIONS(1145), - [sym_character_literal] = ACTIONS(1143), - [anon_sym_DQUOTE] = ACTIONS(1145), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1143), - [anon_sym_RBRACE] = ACTIONS(1143), - [sym_null_literal] = ACTIONS(1145), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1145), - [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_final] = ACTIONS(1145), - [anon_sym_BANG] = ACTIONS(1143), - [anon_sym_TILDE] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1143), - [anon_sym_new] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_switch] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1143), - [anon_sym_case] = ACTIONS(1145), - [anon_sym_default] = ACTIONS(1145), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_assert] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_break] = ACTIONS(1145), - [anon_sym_continue] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1145), - [anon_sym_yield] = ACTIONS(1145), - [anon_sym_synchronized] = ACTIONS(1145), - [anon_sym_throw] = ACTIONS(1145), - [anon_sym_try] = ACTIONS(1145), - [anon_sym_if] = ACTIONS(1145), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_AT] = ACTIONS(1145), - [anon_sym_open] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_static] = ACTIONS(1145), - [anon_sym_with] = ACTIONS(1145), - [anon_sym_package] = ACTIONS(1145), - [anon_sym_import] = ACTIONS(1145), - [anon_sym_enum] = ACTIONS(1145), - [anon_sym_public] = ACTIONS(1145), - [anon_sym_protected] = ACTIONS(1145), - [anon_sym_private] = ACTIONS(1145), - [anon_sym_abstract] = ACTIONS(1145), - [anon_sym_strictfp] = ACTIONS(1145), - [anon_sym_native] = ACTIONS(1145), - [anon_sym_transient] = ACTIONS(1145), - [anon_sym_volatile] = ACTIONS(1145), - [anon_sym_sealed] = ACTIONS(1145), - [anon_sym_non_DASHsealed] = ACTIONS(1143), - [anon_sym_record] = ACTIONS(1145), - [anon_sym_ATinterface] = ACTIONS(1143), - [anon_sym_interface] = ACTIONS(1145), - [anon_sym_byte] = ACTIONS(1145), - [anon_sym_short] = ACTIONS(1145), - [anon_sym_int] = ACTIONS(1145), - [anon_sym_long] = ACTIONS(1145), - [anon_sym_char] = ACTIONS(1145), - [anon_sym_float] = ACTIONS(1145), - [anon_sym_double] = ACTIONS(1145), - [sym_boolean_type] = ACTIONS(1145), - [sym_void_type] = ACTIONS(1145), - [sym_this] = ACTIONS(1145), - [sym_super] = ACTIONS(1145), + [STATE(377)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(712), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(1147), - [sym_identifier] = ACTIONS(1149), - [sym_decimal_integer_literal] = ACTIONS(1149), - [sym_hex_integer_literal] = ACTIONS(1149), - [sym_octal_integer_literal] = ACTIONS(1149), - [sym_binary_integer_literal] = ACTIONS(1147), - [sym_decimal_floating_point_literal] = ACTIONS(1147), - [sym_hex_floating_point_literal] = ACTIONS(1149), - [sym_true] = ACTIONS(1149), - [sym_false] = ACTIONS(1149), - [sym_character_literal] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1149), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1147), - [sym_null_literal] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1147), - [anon_sym_LT] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1149), - [anon_sym_DASH] = ACTIONS(1149), - [anon_sym_final] = ACTIONS(1149), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_TILDE] = ACTIONS(1147), - [anon_sym_PLUS_PLUS] = ACTIONS(1147), - [anon_sym_DASH_DASH] = ACTIONS(1147), - [anon_sym_new] = ACTIONS(1149), - [anon_sym_class] = ACTIONS(1149), - [anon_sym_switch] = ACTIONS(1149), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_case] = ACTIONS(1149), - [anon_sym_default] = ACTIONS(1149), - [anon_sym_SEMI] = ACTIONS(1147), - [anon_sym_assert] = ACTIONS(1149), - [anon_sym_do] = ACTIONS(1149), - [anon_sym_while] = ACTIONS(1149), - [anon_sym_break] = ACTIONS(1149), - [anon_sym_continue] = ACTIONS(1149), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_yield] = ACTIONS(1149), - [anon_sym_synchronized] = ACTIONS(1149), - [anon_sym_throw] = ACTIONS(1149), - [anon_sym_try] = ACTIONS(1149), - [anon_sym_if] = ACTIONS(1149), - [anon_sym_else] = ACTIONS(1149), - [anon_sym_for] = ACTIONS(1149), - [anon_sym_AT] = ACTIONS(1149), - [anon_sym_open] = ACTIONS(1149), - [anon_sym_module] = ACTIONS(1149), - [anon_sym_static] = ACTIONS(1149), - [anon_sym_with] = ACTIONS(1149), - [anon_sym_package] = ACTIONS(1149), - [anon_sym_import] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1149), - [anon_sym_public] = ACTIONS(1149), - [anon_sym_protected] = ACTIONS(1149), - [anon_sym_private] = ACTIONS(1149), - [anon_sym_abstract] = ACTIONS(1149), - [anon_sym_strictfp] = ACTIONS(1149), - [anon_sym_native] = ACTIONS(1149), - [anon_sym_transient] = ACTIONS(1149), - [anon_sym_volatile] = ACTIONS(1149), - [anon_sym_sealed] = ACTIONS(1149), - [anon_sym_non_DASHsealed] = ACTIONS(1147), - [anon_sym_record] = ACTIONS(1149), - [anon_sym_ATinterface] = ACTIONS(1147), - [anon_sym_interface] = ACTIONS(1149), - [anon_sym_byte] = ACTIONS(1149), - [anon_sym_short] = ACTIONS(1149), - [anon_sym_int] = ACTIONS(1149), - [anon_sym_long] = ACTIONS(1149), - [anon_sym_char] = ACTIONS(1149), - [anon_sym_float] = ACTIONS(1149), - [anon_sym_double] = ACTIONS(1149), - [sym_boolean_type] = ACTIONS(1149), - [sym_void_type] = ACTIONS(1149), - [sym_this] = ACTIONS(1149), - [sym_super] = ACTIONS(1149), + [STATE(378)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(682), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(1151), - [sym_identifier] = ACTIONS(1153), - [sym_decimal_integer_literal] = ACTIONS(1153), - [sym_hex_integer_literal] = ACTIONS(1153), - [sym_octal_integer_literal] = ACTIONS(1153), - [sym_binary_integer_literal] = ACTIONS(1151), - [sym_decimal_floating_point_literal] = ACTIONS(1151), - [sym_hex_floating_point_literal] = ACTIONS(1153), - [sym_true] = ACTIONS(1153), - [sym_false] = ACTIONS(1153), - [sym_character_literal] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1153), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1151), - [sym_null_literal] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_final] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(1151), - [anon_sym_TILDE] = ACTIONS(1151), - [anon_sym_PLUS_PLUS] = ACTIONS(1151), - [anon_sym_DASH_DASH] = ACTIONS(1151), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1151), - [anon_sym_case] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1153), - [anon_sym_SEMI] = ACTIONS(1151), - [anon_sym_assert] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1153), - [anon_sym_continue] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1153), - [anon_sym_yield] = ACTIONS(1153), - [anon_sym_synchronized] = ACTIONS(1153), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_try] = ACTIONS(1153), - [anon_sym_if] = ACTIONS(1153), - [anon_sym_else] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_AT] = ACTIONS(1153), - [anon_sym_open] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), - [anon_sym_static] = ACTIONS(1153), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_package] = ACTIONS(1153), - [anon_sym_import] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1153), - [anon_sym_public] = ACTIONS(1153), - [anon_sym_protected] = ACTIONS(1153), - [anon_sym_private] = ACTIONS(1153), - [anon_sym_abstract] = ACTIONS(1153), - [anon_sym_strictfp] = ACTIONS(1153), - [anon_sym_native] = ACTIONS(1153), - [anon_sym_transient] = ACTIONS(1153), - [anon_sym_volatile] = ACTIONS(1153), - [anon_sym_sealed] = ACTIONS(1153), - [anon_sym_non_DASHsealed] = ACTIONS(1151), - [anon_sym_record] = ACTIONS(1153), - [anon_sym_ATinterface] = ACTIONS(1151), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_byte] = ACTIONS(1153), - [anon_sym_short] = ACTIONS(1153), - [anon_sym_int] = ACTIONS(1153), - [anon_sym_long] = ACTIONS(1153), - [anon_sym_char] = ACTIONS(1153), - [anon_sym_float] = ACTIONS(1153), - [anon_sym_double] = ACTIONS(1153), - [sym_boolean_type] = ACTIONS(1153), - [sym_void_type] = ACTIONS(1153), - [sym_this] = ACTIONS(1153), - [sym_super] = ACTIONS(1153), + [STATE(379)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(715), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(1155), - [sym_identifier] = ACTIONS(1157), - [sym_decimal_integer_literal] = ACTIONS(1157), - [sym_hex_integer_literal] = ACTIONS(1157), - [sym_octal_integer_literal] = ACTIONS(1157), - [sym_binary_integer_literal] = ACTIONS(1155), - [sym_decimal_floating_point_literal] = ACTIONS(1155), - [sym_hex_floating_point_literal] = ACTIONS(1157), - [sym_true] = ACTIONS(1157), - [sym_false] = ACTIONS(1157), - [sym_character_literal] = ACTIONS(1155), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1155), - [anon_sym_RBRACE] = ACTIONS(1155), - [sym_null_literal] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1155), - [anon_sym_LT] = ACTIONS(1155), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_final] = ACTIONS(1157), - [anon_sym_BANG] = ACTIONS(1155), - [anon_sym_TILDE] = ACTIONS(1155), - [anon_sym_PLUS_PLUS] = ACTIONS(1155), - [anon_sym_DASH_DASH] = ACTIONS(1155), - [anon_sym_new] = ACTIONS(1157), - [anon_sym_class] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1157), - [anon_sym_LBRACE] = ACTIONS(1155), - [anon_sym_case] = ACTIONS(1157), - [anon_sym_default] = ACTIONS(1157), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym_assert] = ACTIONS(1157), - [anon_sym_do] = ACTIONS(1157), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_break] = ACTIONS(1157), - [anon_sym_continue] = ACTIONS(1157), - [anon_sym_return] = ACTIONS(1157), - [anon_sym_yield] = ACTIONS(1157), - [anon_sym_synchronized] = ACTIONS(1157), - [anon_sym_throw] = ACTIONS(1157), - [anon_sym_try] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1157), - [anon_sym_for] = ACTIONS(1157), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_open] = ACTIONS(1157), - [anon_sym_module] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(1157), - [anon_sym_with] = ACTIONS(1157), - [anon_sym_package] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1157), - [anon_sym_enum] = ACTIONS(1157), - [anon_sym_public] = ACTIONS(1157), - [anon_sym_protected] = ACTIONS(1157), - [anon_sym_private] = ACTIONS(1157), - [anon_sym_abstract] = ACTIONS(1157), - [anon_sym_strictfp] = ACTIONS(1157), - [anon_sym_native] = ACTIONS(1157), - [anon_sym_transient] = ACTIONS(1157), - [anon_sym_volatile] = ACTIONS(1157), - [anon_sym_sealed] = ACTIONS(1157), - [anon_sym_non_DASHsealed] = ACTIONS(1155), - [anon_sym_record] = ACTIONS(1157), - [anon_sym_ATinterface] = ACTIONS(1155), - [anon_sym_interface] = ACTIONS(1157), - [anon_sym_byte] = ACTIONS(1157), - [anon_sym_short] = ACTIONS(1157), - [anon_sym_int] = ACTIONS(1157), - [anon_sym_long] = ACTIONS(1157), - [anon_sym_char] = ACTIONS(1157), - [anon_sym_float] = ACTIONS(1157), - [anon_sym_double] = ACTIONS(1157), - [sym_boolean_type] = ACTIONS(1157), - [sym_void_type] = ACTIONS(1157), - [sym_this] = ACTIONS(1157), - [sym_super] = ACTIONS(1157), + [STATE(380)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(568), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [382] = { - [ts_builtin_sym_end] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [sym_decimal_integer_literal] = ACTIONS(1161), - [sym_hex_integer_literal] = ACTIONS(1161), - [sym_octal_integer_literal] = ACTIONS(1161), - [sym_binary_integer_literal] = ACTIONS(1159), - [sym_decimal_floating_point_literal] = ACTIONS(1159), - [sym_hex_floating_point_literal] = ACTIONS(1161), - [sym_true] = ACTIONS(1161), - [sym_false] = ACTIONS(1161), - [sym_character_literal] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1161), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1159), - [anon_sym_RBRACE] = ACTIONS(1159), - [sym_null_literal] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_final] = ACTIONS(1161), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(1161), - [anon_sym_class] = ACTIONS(1161), - [anon_sym_switch] = ACTIONS(1161), - [anon_sym_LBRACE] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_assert] = ACTIONS(1161), - [anon_sym_do] = ACTIONS(1161), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_break] = ACTIONS(1161), - [anon_sym_continue] = ACTIONS(1161), - [anon_sym_return] = ACTIONS(1161), - [anon_sym_yield] = ACTIONS(1161), - [anon_sym_synchronized] = ACTIONS(1161), - [anon_sym_throw] = ACTIONS(1161), - [anon_sym_try] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1161), - [anon_sym_for] = ACTIONS(1161), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_open] = ACTIONS(1161), - [anon_sym_module] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1161), - [anon_sym_with] = ACTIONS(1161), - [anon_sym_package] = ACTIONS(1161), - [anon_sym_import] = ACTIONS(1161), - [anon_sym_enum] = ACTIONS(1161), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_abstract] = ACTIONS(1161), - [anon_sym_strictfp] = ACTIONS(1161), - [anon_sym_native] = ACTIONS(1161), - [anon_sym_transient] = ACTIONS(1161), - [anon_sym_volatile] = ACTIONS(1161), - [anon_sym_sealed] = ACTIONS(1161), - [anon_sym_non_DASHsealed] = ACTIONS(1159), - [anon_sym_record] = ACTIONS(1161), - [anon_sym_ATinterface] = ACTIONS(1159), - [anon_sym_interface] = ACTIONS(1161), - [anon_sym_byte] = ACTIONS(1161), - [anon_sym_short] = ACTIONS(1161), - [anon_sym_int] = ACTIONS(1161), - [anon_sym_long] = ACTIONS(1161), - [anon_sym_char] = ACTIONS(1161), - [anon_sym_float] = ACTIONS(1161), - [anon_sym_double] = ACTIONS(1161), - [sym_boolean_type] = ACTIONS(1161), - [sym_void_type] = ACTIONS(1161), - [sym_this] = ACTIONS(1161), - [sym_super] = ACTIONS(1161), + [STATE(381)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(704), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [383] = { - [ts_builtin_sym_end] = ACTIONS(1163), - [sym_identifier] = ACTIONS(1165), - [sym_decimal_integer_literal] = ACTIONS(1165), - [sym_hex_integer_literal] = ACTIONS(1165), - [sym_octal_integer_literal] = ACTIONS(1165), - [sym_binary_integer_literal] = ACTIONS(1163), - [sym_decimal_floating_point_literal] = ACTIONS(1163), - [sym_hex_floating_point_literal] = ACTIONS(1165), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_character_literal] = ACTIONS(1163), - [anon_sym_DQUOTE] = ACTIONS(1165), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1163), - [anon_sym_RBRACE] = ACTIONS(1163), - [sym_null_literal] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1163), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_final] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1163), - [anon_sym_PLUS_PLUS] = ACTIONS(1163), - [anon_sym_DASH_DASH] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(1165), - [anon_sym_class] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_assert] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_yield] = ACTIONS(1165), - [anon_sym_synchronized] = ACTIONS(1165), - [anon_sym_throw] = ACTIONS(1165), - [anon_sym_try] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_AT] = ACTIONS(1165), - [anon_sym_open] = ACTIONS(1165), - [anon_sym_module] = ACTIONS(1165), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_with] = ACTIONS(1165), - [anon_sym_package] = ACTIONS(1165), - [anon_sym_import] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_public] = ACTIONS(1165), - [anon_sym_protected] = ACTIONS(1165), - [anon_sym_private] = ACTIONS(1165), - [anon_sym_abstract] = ACTIONS(1165), - [anon_sym_strictfp] = ACTIONS(1165), - [anon_sym_native] = ACTIONS(1165), - [anon_sym_transient] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_sealed] = ACTIONS(1165), - [anon_sym_non_DASHsealed] = ACTIONS(1163), - [anon_sym_record] = ACTIONS(1165), - [anon_sym_ATinterface] = ACTIONS(1163), - [anon_sym_interface] = ACTIONS(1165), - [anon_sym_byte] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [anon_sym_int] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_char] = ACTIONS(1165), - [anon_sym_float] = ACTIONS(1165), - [anon_sym_double] = ACTIONS(1165), - [sym_boolean_type] = ACTIONS(1165), - [sym_void_type] = ACTIONS(1165), - [sym_this] = ACTIONS(1165), - [sym_super] = ACTIONS(1165), + [STATE(382)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(692), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [384] = { - [ts_builtin_sym_end] = ACTIONS(1167), - [sym_identifier] = ACTIONS(1169), - [sym_decimal_integer_literal] = ACTIONS(1169), - [sym_hex_integer_literal] = ACTIONS(1169), - [sym_octal_integer_literal] = ACTIONS(1169), - [sym_binary_integer_literal] = ACTIONS(1167), - [sym_decimal_floating_point_literal] = ACTIONS(1167), - [sym_hex_floating_point_literal] = ACTIONS(1169), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [sym_character_literal] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1169), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1167), - [sym_null_literal] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1167), - [anon_sym_LT] = ACTIONS(1167), - [anon_sym_PLUS] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_final] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(1169), - [anon_sym_class] = ACTIONS(1169), - [anon_sym_switch] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_case] = ACTIONS(1169), - [anon_sym_default] = ACTIONS(1169), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_assert] = ACTIONS(1169), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1169), - [anon_sym_break] = ACTIONS(1169), - [anon_sym_continue] = ACTIONS(1169), - [anon_sym_return] = ACTIONS(1169), - [anon_sym_yield] = ACTIONS(1169), - [anon_sym_synchronized] = ACTIONS(1169), - [anon_sym_throw] = ACTIONS(1169), - [anon_sym_try] = ACTIONS(1169), - [anon_sym_if] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_AT] = ACTIONS(1169), - [anon_sym_open] = ACTIONS(1169), - [anon_sym_module] = ACTIONS(1169), - [anon_sym_static] = ACTIONS(1169), - [anon_sym_with] = ACTIONS(1169), - [anon_sym_package] = ACTIONS(1169), - [anon_sym_import] = ACTIONS(1169), - [anon_sym_enum] = ACTIONS(1169), - [anon_sym_public] = ACTIONS(1169), - [anon_sym_protected] = ACTIONS(1169), - [anon_sym_private] = ACTIONS(1169), - [anon_sym_abstract] = ACTIONS(1169), - [anon_sym_strictfp] = ACTIONS(1169), - [anon_sym_native] = ACTIONS(1169), - [anon_sym_transient] = ACTIONS(1169), - [anon_sym_volatile] = ACTIONS(1169), - [anon_sym_sealed] = ACTIONS(1169), - [anon_sym_non_DASHsealed] = ACTIONS(1167), - [anon_sym_record] = ACTIONS(1169), - [anon_sym_ATinterface] = ACTIONS(1167), - [anon_sym_interface] = ACTIONS(1169), - [anon_sym_byte] = ACTIONS(1169), - [anon_sym_short] = ACTIONS(1169), - [anon_sym_int] = ACTIONS(1169), - [anon_sym_long] = ACTIONS(1169), - [anon_sym_char] = ACTIONS(1169), - [anon_sym_float] = ACTIONS(1169), - [anon_sym_double] = ACTIONS(1169), - [sym_boolean_type] = ACTIONS(1169), - [sym_void_type] = ACTIONS(1169), - [sym_this] = ACTIONS(1169), - [sym_super] = ACTIONS(1169), + [STATE(383)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(716), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1299), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(423), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(423), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1299), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(454), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(27), + [anon_sym_DASH_DASH] = ACTIONS(27), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [385] = { - [ts_builtin_sym_end] = ACTIONS(1171), - [sym_identifier] = ACTIONS(1173), - [sym_decimal_integer_literal] = ACTIONS(1173), - [sym_hex_integer_literal] = ACTIONS(1173), - [sym_octal_integer_literal] = ACTIONS(1173), - [sym_binary_integer_literal] = ACTIONS(1171), - [sym_decimal_floating_point_literal] = ACTIONS(1171), - [sym_hex_floating_point_literal] = ACTIONS(1173), - [sym_true] = ACTIONS(1173), - [sym_false] = ACTIONS(1173), - [sym_character_literal] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1173), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1171), - [anon_sym_RBRACE] = ACTIONS(1171), - [sym_null_literal] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_PLUS] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_final] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1171), - [anon_sym_PLUS_PLUS] = ACTIONS(1171), - [anon_sym_DASH_DASH] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1173), - [anon_sym_class] = ACTIONS(1173), - [anon_sym_switch] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1171), - [anon_sym_case] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1173), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_assert] = ACTIONS(1173), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_while] = ACTIONS(1173), - [anon_sym_break] = ACTIONS(1173), - [anon_sym_continue] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1173), - [anon_sym_yield] = ACTIONS(1173), - [anon_sym_synchronized] = ACTIONS(1173), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_if] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(1173), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_AT] = ACTIONS(1173), - [anon_sym_open] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(1173), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_with] = ACTIONS(1173), - [anon_sym_package] = ACTIONS(1173), - [anon_sym_import] = ACTIONS(1173), - [anon_sym_enum] = ACTIONS(1173), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_abstract] = ACTIONS(1173), - [anon_sym_strictfp] = ACTIONS(1173), - [anon_sym_native] = ACTIONS(1173), - [anon_sym_transient] = ACTIONS(1173), - [anon_sym_volatile] = ACTIONS(1173), - [anon_sym_sealed] = ACTIONS(1173), - [anon_sym_non_DASHsealed] = ACTIONS(1171), - [anon_sym_record] = ACTIONS(1173), - [anon_sym_ATinterface] = ACTIONS(1171), - [anon_sym_interface] = ACTIONS(1173), - [anon_sym_byte] = ACTIONS(1173), - [anon_sym_short] = ACTIONS(1173), - [anon_sym_int] = ACTIONS(1173), - [anon_sym_long] = ACTIONS(1173), - [anon_sym_char] = ACTIONS(1173), - [anon_sym_float] = ACTIONS(1173), - [anon_sym_double] = ACTIONS(1173), - [sym_boolean_type] = ACTIONS(1173), - [sym_void_type] = ACTIONS(1173), - [sym_this] = ACTIONS(1173), - [sym_super] = ACTIONS(1173), + [STATE(384)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(577), + [sym_assignment_expression] = STATE(577), + [sym_binary_expression] = STATE(577), + [sym_instanceof_expression] = STATE(577), + [sym_lambda_expression] = STATE(577), + [sym_inferred_parameters] = STATE(1314), + [sym_ternary_expression] = STATE(577), + [sym_unary_expression] = STATE(577), + [sym_update_expression] = STATE(577), + [sym_primary_expression] = STATE(481), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(429), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(429), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_switch_expression] = STATE(577), + [sym__annotation] = STATE(732), + [sym_marker_annotation] = STATE(732), + [sym_annotation] = STATE(732), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(849), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [sym_formal_parameters] = STATE(1314), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [sym_identifier] = ACTIONS(795), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_TILDE] = ACTIONS(535), + [anon_sym_PLUS_PLUS] = ACTIONS(537), + [anon_sym_DASH_DASH] = ACTIONS(537), + [anon_sym_new] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(491), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [386] = { + [STATE(385)] = { [ts_builtin_sym_end] = ACTIONS(1175), [sym_identifier] = ACTIONS(1177), [sym_decimal_integer_literal] = ACTIONS(1177), @@ -47553,7 +47019,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1177), [anon_sym_switch] = ACTIONS(1177), [anon_sym_LBRACE] = ACTIONS(1175), - [anon_sym_case] = ACTIONS(1177), [anon_sym_default] = ACTIONS(1177), [anon_sym_SEMI] = ACTIONS(1175), [anon_sym_assert] = ACTIONS(1177), @@ -47567,13 +47032,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1177), [anon_sym_try] = ACTIONS(1177), [anon_sym_if] = ACTIONS(1177), - [anon_sym_else] = ACTIONS(1177), [anon_sym_for] = ACTIONS(1177), [anon_sym_AT] = ACTIONS(1177), [anon_sym_open] = ACTIONS(1177), [anon_sym_module] = ACTIONS(1177), [anon_sym_static] = ACTIONS(1177), - [anon_sym_with] = ACTIONS(1177), [anon_sym_package] = ACTIONS(1177), [anon_sym_import] = ACTIONS(1177), [anon_sym_enum] = ACTIONS(1177), @@ -47604,479 +47067,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [387] = { - [ts_builtin_sym_end] = ACTIONS(1179), - [sym_identifier] = ACTIONS(1181), - [sym_decimal_integer_literal] = ACTIONS(1181), - [sym_hex_integer_literal] = ACTIONS(1181), - [sym_octal_integer_literal] = ACTIONS(1181), - [sym_binary_integer_literal] = ACTIONS(1179), - [sym_decimal_floating_point_literal] = ACTIONS(1179), - [sym_hex_floating_point_literal] = ACTIONS(1181), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [sym_character_literal] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1181), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [sym_null_literal] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_final] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_PLUS_PLUS] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1179), - [anon_sym_new] = ACTIONS(1181), - [anon_sym_class] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_yield] = ACTIONS(1181), - [anon_sym_synchronized] = ACTIONS(1181), - [anon_sym_throw] = ACTIONS(1181), - [anon_sym_try] = ACTIONS(1181), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_AT] = ACTIONS(1181), - [anon_sym_open] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_with] = ACTIONS(1181), - [anon_sym_package] = ACTIONS(1181), - [anon_sym_import] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_public] = ACTIONS(1181), - [anon_sym_protected] = ACTIONS(1181), - [anon_sym_private] = ACTIONS(1181), - [anon_sym_abstract] = ACTIONS(1181), - [anon_sym_strictfp] = ACTIONS(1181), - [anon_sym_native] = ACTIONS(1181), - [anon_sym_transient] = ACTIONS(1181), - [anon_sym_volatile] = ACTIONS(1181), - [anon_sym_sealed] = ACTIONS(1181), - [anon_sym_non_DASHsealed] = ACTIONS(1179), - [anon_sym_record] = ACTIONS(1181), - [anon_sym_ATinterface] = ACTIONS(1179), - [anon_sym_interface] = ACTIONS(1181), - [anon_sym_byte] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [sym_boolean_type] = ACTIONS(1181), - [sym_void_type] = ACTIONS(1181), - [sym_this] = ACTIONS(1181), - [sym_super] = ACTIONS(1181), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [388] = { - [sym_switch_label] = STATE(1322), - [aux_sym_switch_block_statement_group_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1183), - [sym_decimal_integer_literal] = ACTIONS(1183), - [sym_hex_integer_literal] = ACTIONS(1183), - [sym_octal_integer_literal] = ACTIONS(1183), - [sym_binary_integer_literal] = ACTIONS(1185), - [sym_decimal_floating_point_literal] = ACTIONS(1185), - [sym_hex_floating_point_literal] = ACTIONS(1183), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [sym_character_literal] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_null_literal] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_assert] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_synchronized] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1183), - [anon_sym_try] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1183), - [anon_sym_open] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_strictfp] = ACTIONS(1183), - [anon_sym_native] = ACTIONS(1183), - [anon_sym_transient] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_non_DASHsealed] = ACTIONS(1185), - [anon_sym_record] = ACTIONS(1183), - [anon_sym_ATinterface] = ACTIONS(1185), - [anon_sym_interface] = ACTIONS(1183), - [anon_sym_byte] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_int] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_char] = ACTIONS(1183), - [anon_sym_float] = ACTIONS(1183), - [anon_sym_double] = ACTIONS(1183), - [sym_boolean_type] = ACTIONS(1183), - [sym_void_type] = ACTIONS(1183), - [sym_this] = ACTIONS(1183), - [sym_super] = ACTIONS(1183), + [STATE(386)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_primary_expression] = STATE(1049), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(934), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(510), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_resource] = STATE(1194), + [sym__annotation] = STATE(672), + [sym_marker_annotation] = STATE(672), + [sym_annotation] = STATE(672), + [sym_modifiers] = STATE(775), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(805), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [aux_sym_modifiers_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(1179), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_final] = ACTIONS(432), + [anon_sym_new] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(432), + [anon_sym_synchronized] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_static] = ACTIONS(432), + [anon_sym_public] = ACTIONS(432), + [anon_sym_protected] = ACTIONS(432), + [anon_sym_private] = ACTIONS(432), + [anon_sym_abstract] = ACTIONS(432), + [anon_sym_strictfp] = ACTIONS(432), + [anon_sym_native] = ACTIONS(432), + [anon_sym_transient] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym_sealed] = ACTIONS(432), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [389] = { - [sym_identifier] = ACTIONS(1193), - [sym_decimal_integer_literal] = ACTIONS(1193), - [sym_hex_integer_literal] = ACTIONS(1193), - [sym_octal_integer_literal] = ACTIONS(1193), - [sym_binary_integer_literal] = ACTIONS(1195), - [sym_decimal_floating_point_literal] = ACTIONS(1195), - [sym_hex_floating_point_literal] = ACTIONS(1193), - [sym_true] = ACTIONS(1193), - [sym_false] = ACTIONS(1193), - [sym_character_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1193), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [sym_null_literal] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_final] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_class] = ACTIONS(1193), - [anon_sym_switch] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1193), - [anon_sym_default] = ACTIONS(1193), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_assert] = ACTIONS(1193), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_while] = ACTIONS(1193), - [anon_sym_break] = ACTIONS(1193), - [anon_sym_continue] = ACTIONS(1193), - [anon_sym_return] = ACTIONS(1193), - [anon_sym_yield] = ACTIONS(1193), - [anon_sym_synchronized] = ACTIONS(1193), - [anon_sym_throw] = ACTIONS(1193), - [anon_sym_try] = ACTIONS(1193), - [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1193), - [anon_sym_AT] = ACTIONS(1193), - [anon_sym_open] = ACTIONS(1193), - [anon_sym_module] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1193), - [anon_sym_with] = ACTIONS(1193), - [anon_sym_package] = ACTIONS(1193), - [anon_sym_import] = ACTIONS(1193), - [anon_sym_enum] = ACTIONS(1193), - [anon_sym_public] = ACTIONS(1193), - [anon_sym_protected] = ACTIONS(1193), - [anon_sym_private] = ACTIONS(1193), - [anon_sym_abstract] = ACTIONS(1193), - [anon_sym_strictfp] = ACTIONS(1193), - [anon_sym_native] = ACTIONS(1193), - [anon_sym_transient] = ACTIONS(1193), - [anon_sym_volatile] = ACTIONS(1193), - [anon_sym_sealed] = ACTIONS(1193), - [anon_sym_non_DASHsealed] = ACTIONS(1195), - [anon_sym_record] = ACTIONS(1193), - [anon_sym_ATinterface] = ACTIONS(1195), - [anon_sym_interface] = ACTIONS(1193), - [anon_sym_byte] = ACTIONS(1193), - [anon_sym_short] = ACTIONS(1193), - [anon_sym_int] = ACTIONS(1193), - [anon_sym_long] = ACTIONS(1193), - [anon_sym_char] = ACTIONS(1193), - [anon_sym_float] = ACTIONS(1193), - [anon_sym_double] = ACTIONS(1193), - [sym_boolean_type] = ACTIONS(1193), - [sym_void_type] = ACTIONS(1193), - [sym_this] = ACTIONS(1193), - [sym_super] = ACTIONS(1193), + [STATE(387)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_primary_expression] = STATE(1049), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(934), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(510), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_resource] = STATE(1194), + [sym__annotation] = STATE(672), + [sym_marker_annotation] = STATE(672), + [sym_annotation] = STATE(672), + [sym_modifiers] = STATE(775), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(805), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [aux_sym_modifiers_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(1179), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_RPAREN] = ACTIONS(1187), + [anon_sym_final] = ACTIONS(432), + [anon_sym_new] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(432), + [anon_sym_synchronized] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_static] = ACTIONS(432), + [anon_sym_public] = ACTIONS(432), + [anon_sym_protected] = ACTIONS(432), + [anon_sym_private] = ACTIONS(432), + [anon_sym_abstract] = ACTIONS(432), + [anon_sym_strictfp] = ACTIONS(432), + [anon_sym_native] = ACTIONS(432), + [anon_sym_transient] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym_sealed] = ACTIONS(432), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [390] = { - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1201), - [sym_decimal_integer_literal] = ACTIONS(1201), - [sym_hex_integer_literal] = ACTIONS(1201), - [sym_octal_integer_literal] = ACTIONS(1201), - [sym_binary_integer_literal] = ACTIONS(1199), - [sym_decimal_floating_point_literal] = ACTIONS(1199), - [sym_hex_floating_point_literal] = ACTIONS(1201), - [sym_true] = ACTIONS(1201), - [sym_false] = ACTIONS(1201), - [sym_character_literal] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1199), - [sym_null_literal] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_final] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_TILDE] = ACTIONS(1199), - [anon_sym_PLUS_PLUS] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1199), - [anon_sym_new] = ACTIONS(1201), - [anon_sym_class] = ACTIONS(1201), - [anon_sym_switch] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_assert] = ACTIONS(1201), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_while] = ACTIONS(1201), - [anon_sym_break] = ACTIONS(1201), - [anon_sym_continue] = ACTIONS(1201), - [anon_sym_return] = ACTIONS(1201), - [anon_sym_yield] = ACTIONS(1201), - [anon_sym_synchronized] = ACTIONS(1201), - [anon_sym_throw] = ACTIONS(1201), - [anon_sym_try] = ACTIONS(1201), - [anon_sym_if] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_open] = ACTIONS(1201), - [anon_sym_module] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1201), - [anon_sym_package] = ACTIONS(1201), - [anon_sym_import] = ACTIONS(1201), - [anon_sym_enum] = ACTIONS(1201), - [anon_sym_public] = ACTIONS(1201), - [anon_sym_protected] = ACTIONS(1201), - [anon_sym_private] = ACTIONS(1201), - [anon_sym_abstract] = ACTIONS(1201), - [anon_sym_strictfp] = ACTIONS(1201), - [anon_sym_native] = ACTIONS(1201), - [anon_sym_transient] = ACTIONS(1201), - [anon_sym_volatile] = ACTIONS(1201), - [anon_sym_sealed] = ACTIONS(1201), - [anon_sym_non_DASHsealed] = ACTIONS(1199), - [anon_sym_record] = ACTIONS(1201), - [anon_sym_ATinterface] = ACTIONS(1199), - [anon_sym_interface] = ACTIONS(1201), - [anon_sym_byte] = ACTIONS(1201), - [anon_sym_short] = ACTIONS(1201), - [anon_sym_int] = ACTIONS(1201), - [anon_sym_long] = ACTIONS(1201), - [anon_sym_char] = ACTIONS(1201), - [anon_sym_float] = ACTIONS(1201), - [anon_sym_double] = ACTIONS(1201), - [sym_boolean_type] = ACTIONS(1201), - [sym_void_type] = ACTIONS(1201), - [sym_this] = ACTIONS(1201), - [sym_super] = ACTIONS(1201), + [STATE(388)] = { + [sym_identifier] = ACTIONS(1083), + [sym_decimal_integer_literal] = ACTIONS(1083), + [sym_hex_integer_literal] = ACTIONS(1083), + [sym_octal_integer_literal] = ACTIONS(1083), + [sym_binary_integer_literal] = ACTIONS(1085), + [sym_decimal_floating_point_literal] = ACTIONS(1085), + [sym_hex_floating_point_literal] = ACTIONS(1083), + [sym_true] = ACTIONS(1083), + [sym_false] = ACTIONS(1083), + [sym_character_literal] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_final] = ACTIONS(1083), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [anon_sym_new] = ACTIONS(1083), + [anon_sym_class] = ACTIONS(1083), + [anon_sym_switch] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_case] = ACTIONS(1083), + [anon_sym_default] = ACTIONS(1083), + [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_assert] = ACTIONS(1083), + [anon_sym_do] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_break] = ACTIONS(1083), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1083), + [anon_sym_yield] = ACTIONS(1083), + [anon_sym_synchronized] = ACTIONS(1083), + [anon_sym_throw] = ACTIONS(1083), + [anon_sym_try] = ACTIONS(1083), + [anon_sym_if] = ACTIONS(1083), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_open] = ACTIONS(1083), + [anon_sym_module] = ACTIONS(1083), + [anon_sym_static] = ACTIONS(1083), + [anon_sym_package] = ACTIONS(1083), + [anon_sym_import] = ACTIONS(1083), + [anon_sym_enum] = ACTIONS(1083), + [anon_sym_public] = ACTIONS(1083), + [anon_sym_protected] = ACTIONS(1083), + [anon_sym_private] = ACTIONS(1083), + [anon_sym_abstract] = ACTIONS(1083), + [anon_sym_strictfp] = ACTIONS(1083), + [anon_sym_native] = ACTIONS(1083), + [anon_sym_transient] = ACTIONS(1083), + [anon_sym_volatile] = ACTIONS(1083), + [anon_sym_sealed] = ACTIONS(1083), + [anon_sym_non_DASHsealed] = ACTIONS(1085), + [anon_sym_record] = ACTIONS(1083), + [anon_sym_ATinterface] = ACTIONS(1085), + [anon_sym_interface] = ACTIONS(1083), + [anon_sym_byte] = ACTIONS(1083), + [anon_sym_short] = ACTIONS(1083), + [anon_sym_int] = ACTIONS(1083), + [anon_sym_long] = ACTIONS(1083), + [anon_sym_char] = ACTIONS(1083), + [anon_sym_float] = ACTIONS(1083), + [anon_sym_double] = ACTIONS(1083), + [sym_boolean_type] = ACTIONS(1083), + [sym_void_type] = ACTIONS(1083), + [sym_this] = ACTIONS(1083), + [sym_super] = ACTIONS(1083), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [391] = { - [ts_builtin_sym_end] = ACTIONS(1203), - [sym_identifier] = ACTIONS(1205), - [sym_decimal_integer_literal] = ACTIONS(1205), - [sym_hex_integer_literal] = ACTIONS(1205), - [sym_octal_integer_literal] = ACTIONS(1205), - [sym_binary_integer_literal] = ACTIONS(1203), - [sym_decimal_floating_point_literal] = ACTIONS(1203), - [sym_hex_floating_point_literal] = ACTIONS(1205), - [sym_true] = ACTIONS(1205), - [sym_false] = ACTIONS(1205), - [sym_character_literal] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), - [anon_sym_RBRACE] = ACTIONS(1203), - [sym_null_literal] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_final] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_new] = ACTIONS(1205), - [anon_sym_class] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym_assert] = ACTIONS(1205), - [anon_sym_do] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_yield] = ACTIONS(1205), - [anon_sym_synchronized] = ACTIONS(1205), - [anon_sym_throw] = ACTIONS(1205), - [anon_sym_try] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_AT] = ACTIONS(1205), - [anon_sym_open] = ACTIONS(1205), - [anon_sym_module] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_with] = ACTIONS(1205), - [anon_sym_package] = ACTIONS(1205), - [anon_sym_import] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_public] = ACTIONS(1205), - [anon_sym_protected] = ACTIONS(1205), - [anon_sym_private] = ACTIONS(1205), - [anon_sym_abstract] = ACTIONS(1205), - [anon_sym_strictfp] = ACTIONS(1205), - [anon_sym_native] = ACTIONS(1205), - [anon_sym_transient] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_sealed] = ACTIONS(1205), - [anon_sym_non_DASHsealed] = ACTIONS(1203), - [anon_sym_record] = ACTIONS(1205), - [anon_sym_ATinterface] = ACTIONS(1203), - [anon_sym_interface] = ACTIONS(1205), - [anon_sym_byte] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [anon_sym_int] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_char] = ACTIONS(1205), - [anon_sym_float] = ACTIONS(1205), - [anon_sym_double] = ACTIONS(1205), - [sym_boolean_type] = ACTIONS(1205), - [sym_void_type] = ACTIONS(1205), - [sym_this] = ACTIONS(1205), - [sym_super] = ACTIONS(1205), + [STATE(389)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_primary_expression] = STATE(1049), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(934), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(510), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_resource] = STATE(1194), + [sym__annotation] = STATE(672), + [sym_marker_annotation] = STATE(672), + [sym_annotation] = STATE(672), + [sym_modifiers] = STATE(775), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(805), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [aux_sym_modifiers_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(1179), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_final] = ACTIONS(432), + [anon_sym_new] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(432), + [anon_sym_synchronized] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_static] = ACTIONS(432), + [anon_sym_public] = ACTIONS(432), + [anon_sym_protected] = ACTIONS(432), + [anon_sym_private] = ACTIONS(432), + [anon_sym_abstract] = ACTIONS(432), + [anon_sym_strictfp] = ACTIONS(432), + [anon_sym_native] = ACTIONS(432), + [anon_sym_transient] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym_sealed] = ACTIONS(432), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [STATE(390)] = { + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(543), + [sym__string_literal] = STATE(489), + [sym__multiline_string_literal] = STATE(489), + [sym_primary_expression] = STATE(1049), + [sym_array_creation_expression] = STATE(510), + [sym_parenthesized_expression] = STATE(510), + [sym_class_literal] = STATE(510), + [sym_object_creation_expression] = STATE(510), + [sym__unqualified_object_creation_expression] = STATE(526), + [sym_field_access] = STATE(934), + [sym_template_expression] = STATE(510), + [sym_array_access] = STATE(510), + [sym_method_invocation] = STATE(510), + [sym_method_reference] = STATE(510), + [sym_resource] = STATE(1052), + [sym__annotation] = STATE(672), + [sym_marker_annotation] = STATE(672), + [sym_annotation] = STATE(672), + [sym_modifiers] = STATE(775), + [sym__type] = STATE(1277), + [sym__unannotated_type] = STATE(805), + [sym_annotated_type] = STATE(858), + [sym_scoped_type_identifier] = STATE(831), + [sym_generic_type] = STATE(853), + [sym_array_type] = STATE(771), + [sym_integral_type] = STATE(771), + [sym_floating_point_type] = STATE(771), + [aux_sym_array_creation_expression_repeat1] = STATE(732), + [aux_sym_modifiers_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(1179), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(9), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_final] = ACTIONS(432), + [anon_sym_new] = ACTIONS(1185), + [anon_sym_default] = ACTIONS(432), + [anon_sym_synchronized] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_static] = ACTIONS(432), + [anon_sym_public] = ACTIONS(432), + [anon_sym_protected] = ACTIONS(432), + [anon_sym_private] = ACTIONS(432), + [anon_sym_abstract] = ACTIONS(432), + [anon_sym_strictfp] = ACTIONS(432), + [anon_sym_native] = ACTIONS(432), + [anon_sym_transient] = ACTIONS(432), + [anon_sym_volatile] = ACTIONS(432), + [anon_sym_sealed] = ACTIONS(432), + [anon_sym_non_DASHsealed] = ACTIONS(436), + [anon_sym_byte] = ACTIONS(83), + [anon_sym_short] = ACTIONS(83), + [anon_sym_int] = ACTIONS(83), + [anon_sym_long] = ACTIONS(83), + [anon_sym_char] = ACTIONS(83), + [anon_sym_float] = ACTIONS(85), + [anon_sym_double] = ACTIONS(85), + [sym_boolean_type] = ACTIONS(87), + [sym_void_type] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(91), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [392] = { - [ts_builtin_sym_end] = ACTIONS(1207), - [sym_identifier] = ACTIONS(1209), - [sym_decimal_integer_literal] = ACTIONS(1209), - [sym_hex_integer_literal] = ACTIONS(1209), - [sym_octal_integer_literal] = ACTIONS(1209), - [sym_binary_integer_literal] = ACTIONS(1207), - [sym_decimal_floating_point_literal] = ACTIONS(1207), - [sym_hex_floating_point_literal] = ACTIONS(1209), - [sym_true] = ACTIONS(1209), - [sym_false] = ACTIONS(1209), - [sym_character_literal] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(1207), - [sym_null_literal] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_final] = ACTIONS(1209), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_new] = ACTIONS(1209), - [anon_sym_class] = ACTIONS(1209), - [anon_sym_switch] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_assert] = ACTIONS(1209), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_yield] = ACTIONS(1209), - [anon_sym_synchronized] = ACTIONS(1209), - [anon_sym_throw] = ACTIONS(1209), - [anon_sym_try] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_AT] = ACTIONS(1209), - [anon_sym_open] = ACTIONS(1209), - [anon_sym_module] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_with] = ACTIONS(1209), - [anon_sym_package] = ACTIONS(1209), - [anon_sym_import] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_public] = ACTIONS(1209), - [anon_sym_protected] = ACTIONS(1209), - [anon_sym_private] = ACTIONS(1209), - [anon_sym_abstract] = ACTIONS(1209), - [anon_sym_strictfp] = ACTIONS(1209), - [anon_sym_native] = ACTIONS(1209), - [anon_sym_transient] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_sealed] = ACTIONS(1209), - [anon_sym_non_DASHsealed] = ACTIONS(1207), - [anon_sym_record] = ACTIONS(1209), - [anon_sym_ATinterface] = ACTIONS(1207), - [anon_sym_interface] = ACTIONS(1209), - [anon_sym_byte] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [anon_sym_int] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_char] = ACTIONS(1209), - [anon_sym_float] = ACTIONS(1209), - [anon_sym_double] = ACTIONS(1209), - [sym_boolean_type] = ACTIONS(1209), - [sym_void_type] = ACTIONS(1209), - [sym_this] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), + [STATE(391)] = { + [sym_identifier] = ACTIONS(1189), + [sym_decimal_integer_literal] = ACTIONS(1189), + [sym_hex_integer_literal] = ACTIONS(1189), + [sym_octal_integer_literal] = ACTIONS(1189), + [sym_binary_integer_literal] = ACTIONS(1191), + [sym_decimal_floating_point_literal] = ACTIONS(1191), + [sym_hex_floating_point_literal] = ACTIONS(1189), + [sym_true] = ACTIONS(1189), + [sym_false] = ACTIONS(1189), + [sym_character_literal] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1189), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1191), + [sym_null_literal] = ACTIONS(1189), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_final] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_new] = ACTIONS(1189), + [anon_sym_class] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_default] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_yield] = ACTIONS(1189), + [anon_sym_synchronized] = ACTIONS(1189), + [anon_sym_throw] = ACTIONS(1189), + [anon_sym_try] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_AT] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(1189), + [anon_sym_module] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_package] = ACTIONS(1189), + [anon_sym_import] = ACTIONS(1189), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_public] = ACTIONS(1189), + [anon_sym_protected] = ACTIONS(1189), + [anon_sym_private] = ACTIONS(1189), + [anon_sym_abstract] = ACTIONS(1189), + [anon_sym_strictfp] = ACTIONS(1189), + [anon_sym_native] = ACTIONS(1189), + [anon_sym_transient] = ACTIONS(1189), + [anon_sym_volatile] = ACTIONS(1189), + [anon_sym_sealed] = ACTIONS(1189), + [anon_sym_non_DASHsealed] = ACTIONS(1191), + [anon_sym_record] = ACTIONS(1189), + [anon_sym_ATinterface] = ACTIONS(1191), + [anon_sym_interface] = ACTIONS(1189), + [anon_sym_byte] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [sym_boolean_type] = ACTIONS(1189), + [sym_void_type] = ACTIONS(1189), + [sym_this] = ACTIONS(1189), + [sym_super] = ACTIONS(1189), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [393] = { - [ts_builtin_sym_end] = ACTIONS(1195), + [STATE(392)] = { [sym_identifier] = ACTIONS(1193), [sym_decimal_integer_literal] = ACTIONS(1193), [sym_hex_integer_literal] = ACTIONS(1193), @@ -48089,9 +47533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_character_literal] = ACTIONS(1195), [anon_sym_DQUOTE] = ACTIONS(1193), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), [sym_null_literal] = ACTIONS(1193), [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(1195), [anon_sym_PLUS] = ACTIONS(1193), [anon_sym_DASH] = ACTIONS(1193), [anon_sym_final] = ACTIONS(1193), @@ -48116,13 +47560,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1193), [anon_sym_try] = ACTIONS(1193), [anon_sym_if] = ACTIONS(1193), - [anon_sym_else] = ACTIONS(1211), [anon_sym_for] = ACTIONS(1193), [anon_sym_AT] = ACTIONS(1193), [anon_sym_open] = ACTIONS(1193), [anon_sym_module] = ACTIONS(1193), [anon_sym_static] = ACTIONS(1193), - [anon_sym_with] = ACTIONS(1193), [anon_sym_package] = ACTIONS(1193), [anon_sym_import] = ACTIONS(1193), [anon_sym_enum] = ACTIONS(1193), @@ -48153,874 +47595,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [394] = { - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_identifier] = ACTIONS(1215), - [sym_decimal_integer_literal] = ACTIONS(1215), - [sym_hex_integer_literal] = ACTIONS(1215), - [sym_octal_integer_literal] = ACTIONS(1215), - [sym_binary_integer_literal] = ACTIONS(1213), - [sym_decimal_floating_point_literal] = ACTIONS(1213), - [sym_hex_floating_point_literal] = ACTIONS(1215), - [sym_true] = ACTIONS(1215), - [sym_false] = ACTIONS(1215), - [sym_character_literal] = ACTIONS(1213), - [anon_sym_DQUOTE] = ACTIONS(1215), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), - [sym_null_literal] = ACTIONS(1215), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_LT] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_final] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1213), - [anon_sym_PLUS_PLUS] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1213), - [anon_sym_new] = ACTIONS(1215), - [anon_sym_class] = ACTIONS(1215), - [anon_sym_switch] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_default] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_assert] = ACTIONS(1215), - [anon_sym_do] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_yield] = ACTIONS(1215), - [anon_sym_synchronized] = ACTIONS(1215), - [anon_sym_throw] = ACTIONS(1215), - [anon_sym_try] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1215), - [anon_sym_open] = ACTIONS(1215), - [anon_sym_module] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1215), - [anon_sym_package] = ACTIONS(1215), - [anon_sym_import] = ACTIONS(1215), - [anon_sym_enum] = ACTIONS(1215), - [anon_sym_public] = ACTIONS(1215), - [anon_sym_protected] = ACTIONS(1215), - [anon_sym_private] = ACTIONS(1215), - [anon_sym_abstract] = ACTIONS(1215), - [anon_sym_strictfp] = ACTIONS(1215), - [anon_sym_native] = ACTIONS(1215), - [anon_sym_transient] = ACTIONS(1215), - [anon_sym_volatile] = ACTIONS(1215), - [anon_sym_sealed] = ACTIONS(1215), - [anon_sym_non_DASHsealed] = ACTIONS(1213), - [anon_sym_record] = ACTIONS(1215), - [anon_sym_ATinterface] = ACTIONS(1213), - [anon_sym_interface] = ACTIONS(1215), - [anon_sym_byte] = ACTIONS(1215), - [anon_sym_short] = ACTIONS(1215), - [anon_sym_int] = ACTIONS(1215), - [anon_sym_long] = ACTIONS(1215), - [anon_sym_char] = ACTIONS(1215), - [anon_sym_float] = ACTIONS(1215), - [anon_sym_double] = ACTIONS(1215), - [sym_boolean_type] = ACTIONS(1215), - [sym_void_type] = ACTIONS(1215), - [sym_this] = ACTIONS(1215), - [sym_super] = ACTIONS(1215), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [395] = { - [sym_identifier] = ACTIONS(1183), - [sym_decimal_integer_literal] = ACTIONS(1183), - [sym_hex_integer_literal] = ACTIONS(1183), - [sym_octal_integer_literal] = ACTIONS(1183), - [sym_binary_integer_literal] = ACTIONS(1185), - [sym_decimal_floating_point_literal] = ACTIONS(1185), - [sym_hex_floating_point_literal] = ACTIONS(1183), - [sym_true] = ACTIONS(1183), - [sym_false] = ACTIONS(1183), - [sym_character_literal] = ACTIONS(1185), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_null_literal] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_PLUS] = ACTIONS(1183), - [anon_sym_DASH] = ACTIONS(1183), - [anon_sym_final] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_PLUS_PLUS] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(1183), - [anon_sym_class] = ACTIONS(1183), - [anon_sym_switch] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_assert] = ACTIONS(1183), - [anon_sym_do] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_yield] = ACTIONS(1183), - [anon_sym_synchronized] = ACTIONS(1183), - [anon_sym_throw] = ACTIONS(1183), - [anon_sym_try] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_AT] = ACTIONS(1183), - [anon_sym_open] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_with] = ACTIONS(1183), - [anon_sym_package] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_abstract] = ACTIONS(1183), - [anon_sym_strictfp] = ACTIONS(1183), - [anon_sym_native] = ACTIONS(1183), - [anon_sym_transient] = ACTIONS(1183), - [anon_sym_volatile] = ACTIONS(1183), - [anon_sym_sealed] = ACTIONS(1183), - [anon_sym_non_DASHsealed] = ACTIONS(1185), - [anon_sym_record] = ACTIONS(1183), - [anon_sym_ATinterface] = ACTIONS(1185), - [anon_sym_interface] = ACTIONS(1183), - [anon_sym_byte] = ACTIONS(1183), - [anon_sym_short] = ACTIONS(1183), - [anon_sym_int] = ACTIONS(1183), - [anon_sym_long] = ACTIONS(1183), - [anon_sym_char] = ACTIONS(1183), - [anon_sym_float] = ACTIONS(1183), - [anon_sym_double] = ACTIONS(1183), - [sym_boolean_type] = ACTIONS(1183), - [sym_void_type] = ACTIONS(1183), - [sym_this] = ACTIONS(1183), - [sym_super] = ACTIONS(1183), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [396] = { - [sym_identifier] = ACTIONS(1217), - [sym_decimal_integer_literal] = ACTIONS(1217), - [sym_hex_integer_literal] = ACTIONS(1217), - [sym_octal_integer_literal] = ACTIONS(1217), - [sym_binary_integer_literal] = ACTIONS(1219), - [sym_decimal_floating_point_literal] = ACTIONS(1219), - [sym_hex_floating_point_literal] = ACTIONS(1217), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_character_literal] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1217), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1219), - [sym_null_literal] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_final] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_new] = ACTIONS(1217), - [anon_sym_class] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym_assert] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1217), - [anon_sym_synchronized] = ACTIONS(1217), - [anon_sym_throw] = ACTIONS(1217), - [anon_sym_try] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_AT] = ACTIONS(1217), - [anon_sym_open] = ACTIONS(1217), - [anon_sym_module] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_package] = ACTIONS(1217), - [anon_sym_import] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_public] = ACTIONS(1217), - [anon_sym_protected] = ACTIONS(1217), - [anon_sym_private] = ACTIONS(1217), - [anon_sym_abstract] = ACTIONS(1217), - [anon_sym_strictfp] = ACTIONS(1217), - [anon_sym_native] = ACTIONS(1217), - [anon_sym_transient] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_sealed] = ACTIONS(1217), - [anon_sym_non_DASHsealed] = ACTIONS(1219), - [anon_sym_record] = ACTIONS(1217), - [anon_sym_ATinterface] = ACTIONS(1219), - [anon_sym_interface] = ACTIONS(1217), - [anon_sym_byte] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [anon_sym_int] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_char] = ACTIONS(1217), - [anon_sym_float] = ACTIONS(1217), - [anon_sym_double] = ACTIONS(1217), - [sym_boolean_type] = ACTIONS(1217), - [sym_void_type] = ACTIONS(1217), - [sym_this] = ACTIONS(1217), - [sym_super] = ACTIONS(1217), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [397] = { - [sym_identifier] = ACTIONS(1221), - [sym_decimal_integer_literal] = ACTIONS(1221), - [sym_hex_integer_literal] = ACTIONS(1221), - [sym_octal_integer_literal] = ACTIONS(1221), - [sym_binary_integer_literal] = ACTIONS(1223), - [sym_decimal_floating_point_literal] = ACTIONS(1223), - [sym_hex_floating_point_literal] = ACTIONS(1221), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [sym_character_literal] = ACTIONS(1223), - [anon_sym_DQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1223), - [sym_null_literal] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_final] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_PLUS_PLUS] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1223), - [anon_sym_new] = ACTIONS(1221), - [anon_sym_class] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_SEMI] = ACTIONS(1223), - [anon_sym_assert] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_yield] = ACTIONS(1221), - [anon_sym_synchronized] = ACTIONS(1221), - [anon_sym_throw] = ACTIONS(1221), - [anon_sym_try] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_AT] = ACTIONS(1221), - [anon_sym_open] = ACTIONS(1221), - [anon_sym_module] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_with] = ACTIONS(1221), - [anon_sym_package] = ACTIONS(1221), - [anon_sym_import] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_public] = ACTIONS(1221), - [anon_sym_protected] = ACTIONS(1221), - [anon_sym_private] = ACTIONS(1221), - [anon_sym_abstract] = ACTIONS(1221), - [anon_sym_strictfp] = ACTIONS(1221), - [anon_sym_native] = ACTIONS(1221), - [anon_sym_transient] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_sealed] = ACTIONS(1221), - [anon_sym_non_DASHsealed] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1221), - [anon_sym_ATinterface] = ACTIONS(1223), - [anon_sym_interface] = ACTIONS(1221), - [anon_sym_byte] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [anon_sym_int] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_char] = ACTIONS(1221), - [anon_sym_float] = ACTIONS(1221), - [anon_sym_double] = ACTIONS(1221), - [sym_boolean_type] = ACTIONS(1221), - [sym_void_type] = ACTIONS(1221), - [sym_this] = ACTIONS(1221), - [sym_super] = ACTIONS(1221), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [398] = { - [sym_identifier] = ACTIONS(1225), - [sym_decimal_integer_literal] = ACTIONS(1225), - [sym_hex_integer_literal] = ACTIONS(1225), - [sym_octal_integer_literal] = ACTIONS(1225), - [sym_binary_integer_literal] = ACTIONS(1227), - [sym_decimal_floating_point_literal] = ACTIONS(1227), - [sym_hex_floating_point_literal] = ACTIONS(1225), - [sym_true] = ACTIONS(1225), - [sym_false] = ACTIONS(1225), - [sym_character_literal] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [sym_null_literal] = ACTIONS(1225), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_final] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_new] = ACTIONS(1225), - [anon_sym_class] = ACTIONS(1225), - [anon_sym_switch] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_assert] = ACTIONS(1225), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_yield] = ACTIONS(1225), - [anon_sym_synchronized] = ACTIONS(1225), - [anon_sym_throw] = ACTIONS(1225), - [anon_sym_try] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1225), - [anon_sym_open] = ACTIONS(1225), - [anon_sym_module] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_with] = ACTIONS(1225), - [anon_sym_package] = ACTIONS(1225), - [anon_sym_import] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_public] = ACTIONS(1225), - [anon_sym_protected] = ACTIONS(1225), - [anon_sym_private] = ACTIONS(1225), - [anon_sym_abstract] = ACTIONS(1225), - [anon_sym_strictfp] = ACTIONS(1225), - [anon_sym_native] = ACTIONS(1225), - [anon_sym_transient] = ACTIONS(1225), - [anon_sym_volatile] = ACTIONS(1225), - [anon_sym_sealed] = ACTIONS(1225), - [anon_sym_non_DASHsealed] = ACTIONS(1227), - [anon_sym_record] = ACTIONS(1225), - [anon_sym_ATinterface] = ACTIONS(1227), - [anon_sym_interface] = ACTIONS(1225), - [anon_sym_byte] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [anon_sym_int] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_char] = ACTIONS(1225), - [anon_sym_float] = ACTIONS(1225), - [anon_sym_double] = ACTIONS(1225), - [sym_boolean_type] = ACTIONS(1225), - [sym_void_type] = ACTIONS(1225), - [sym_this] = ACTIONS(1225), - [sym_super] = ACTIONS(1225), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [399] = { - [sym_identifier] = ACTIONS(1229), - [sym_decimal_integer_literal] = ACTIONS(1229), - [sym_hex_integer_literal] = ACTIONS(1229), - [sym_octal_integer_literal] = ACTIONS(1229), - [sym_binary_integer_literal] = ACTIONS(1231), - [sym_decimal_floating_point_literal] = ACTIONS(1231), - [sym_hex_floating_point_literal] = ACTIONS(1229), - [sym_true] = ACTIONS(1229), - [sym_false] = ACTIONS(1229), - [sym_character_literal] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1229), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1231), - [anon_sym_RBRACE] = ACTIONS(1231), - [sym_null_literal] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_final] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_new] = ACTIONS(1229), - [anon_sym_class] = ACTIONS(1229), - [anon_sym_switch] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_assert] = ACTIONS(1229), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_while] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(1229), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_return] = ACTIONS(1229), - [anon_sym_yield] = ACTIONS(1229), - [anon_sym_synchronized] = ACTIONS(1229), - [anon_sym_throw] = ACTIONS(1229), - [anon_sym_try] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1229), - [anon_sym_for] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1229), - [anon_sym_open] = ACTIONS(1229), - [anon_sym_module] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1229), - [anon_sym_with] = ACTIONS(1229), - [anon_sym_package] = ACTIONS(1229), - [anon_sym_import] = ACTIONS(1229), - [anon_sym_enum] = ACTIONS(1229), - [anon_sym_public] = ACTIONS(1229), - [anon_sym_protected] = ACTIONS(1229), - [anon_sym_private] = ACTIONS(1229), - [anon_sym_abstract] = ACTIONS(1229), - [anon_sym_strictfp] = ACTIONS(1229), - [anon_sym_native] = ACTIONS(1229), - [anon_sym_transient] = ACTIONS(1229), - [anon_sym_volatile] = ACTIONS(1229), - [anon_sym_sealed] = ACTIONS(1229), - [anon_sym_non_DASHsealed] = ACTIONS(1231), - [anon_sym_record] = ACTIONS(1229), - [anon_sym_ATinterface] = ACTIONS(1231), - [anon_sym_interface] = ACTIONS(1229), - [anon_sym_byte] = ACTIONS(1229), - [anon_sym_short] = ACTIONS(1229), - [anon_sym_int] = ACTIONS(1229), - [anon_sym_long] = ACTIONS(1229), - [anon_sym_char] = ACTIONS(1229), - [anon_sym_float] = ACTIONS(1229), - [anon_sym_double] = ACTIONS(1229), - [sym_boolean_type] = ACTIONS(1229), - [sym_void_type] = ACTIONS(1229), - [sym_this] = ACTIONS(1229), - [sym_super] = ACTIONS(1229), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [400] = { - [sym_identifier] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(1233), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_instanceof] = ACTIONS(420), - [anon_sym_final] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(422), - [anon_sym_DASH_DASH] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_COLON_COLON] = ACTIONS(422), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_synchronized] = ACTIONS(1233), - [anon_sym_AT] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_public] = ACTIONS(1233), - [anon_sym_protected] = ACTIONS(1233), - [anon_sym_private] = ACTIONS(1233), - [anon_sym_abstract] = ACTIONS(1233), - [anon_sym_strictfp] = ACTIONS(1233), - [anon_sym_native] = ACTIONS(1233), - [anon_sym_transient] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_sealed] = ACTIONS(1233), - [anon_sym_non_DASHsealed] = ACTIONS(1235), - [anon_sym_record] = ACTIONS(1233), - [anon_sym_ATinterface] = ACTIONS(1235), - [anon_sym_interface] = ACTIONS(1233), - [anon_sym_byte] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_int] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_char] = ACTIONS(1233), - [anon_sym_float] = ACTIONS(1233), - [anon_sym_double] = ACTIONS(1233), - [sym_boolean_type] = ACTIONS(1233), - [sym_void_type] = ACTIONS(1233), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [401] = { - [sym_identifier] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_instanceof] = ACTIONS(420), - [anon_sym_final] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(422), - [anon_sym_DASH_DASH] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_COLON_COLON] = ACTIONS(422), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_synchronized] = ACTIONS(1233), - [anon_sym_AT] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_public] = ACTIONS(1233), - [anon_sym_protected] = ACTIONS(1233), - [anon_sym_private] = ACTIONS(1233), - [anon_sym_abstract] = ACTIONS(1233), - [anon_sym_strictfp] = ACTIONS(1233), - [anon_sym_native] = ACTIONS(1233), - [anon_sym_transient] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_sealed] = ACTIONS(1233), - [anon_sym_non_DASHsealed] = ACTIONS(1235), - [anon_sym_record] = ACTIONS(1233), - [anon_sym_ATinterface] = ACTIONS(1235), - [anon_sym_interface] = ACTIONS(1233), - [anon_sym_byte] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_int] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_char] = ACTIONS(1233), - [anon_sym_float] = ACTIONS(1233), - [anon_sym_double] = ACTIONS(1233), - [sym_boolean_type] = ACTIONS(1233), - [sym_void_type] = ACTIONS(1233), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [402] = { - [sym_identifier] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(420), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_instanceof] = ACTIONS(420), - [anon_sym_final] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(422), - [anon_sym_COMMA] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(422), - [anon_sym_DASH_DASH] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(422), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_synchronized] = ACTIONS(1233), - [anon_sym_AT] = ACTIONS(1235), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_public] = ACTIONS(1233), - [anon_sym_protected] = ACTIONS(1233), - [anon_sym_private] = ACTIONS(1233), - [anon_sym_abstract] = ACTIONS(1233), - [anon_sym_strictfp] = ACTIONS(1233), - [anon_sym_native] = ACTIONS(1233), - [anon_sym_transient] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym_sealed] = ACTIONS(1233), - [anon_sym_non_DASHsealed] = ACTIONS(1235), - [anon_sym_byte] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [anon_sym_int] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_char] = ACTIONS(1233), - [anon_sym_float] = ACTIONS(1233), - [anon_sym_double] = ACTIONS(1233), - [sym_boolean_type] = ACTIONS(1233), - [sym_void_type] = ACTIONS(1233), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [403] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_lambda_expression] = STATE(602), - [sym_inferred_parameters] = STATE(1327), - [sym_primary_expression] = STATE(512), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(568), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1327), - [sym__reserved_identifier] = STATE(581), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1237), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_new] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(1241), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(1241), - [anon_sym_module] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(1241), - [anon_sym_sealed] = ACTIONS(1241), - [anon_sym_record] = ACTIONS(1241), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(1243), + [STATE(393)] = { + [sym_identifier] = ACTIONS(1197), + [sym_decimal_integer_literal] = ACTIONS(1197), + [sym_hex_integer_literal] = ACTIONS(1197), + [sym_octal_integer_literal] = ACTIONS(1197), + [sym_binary_integer_literal] = ACTIONS(1199), + [sym_decimal_floating_point_literal] = ACTIONS(1199), + [sym_hex_floating_point_literal] = ACTIONS(1197), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [sym_character_literal] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1199), + [sym_null_literal] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_final] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_new] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_assert] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_yield] = ACTIONS(1197), + [anon_sym_synchronized] = ACTIONS(1197), + [anon_sym_throw] = ACTIONS(1197), + [anon_sym_try] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1197), + [anon_sym_open] = ACTIONS(1197), + [anon_sym_module] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_package] = ACTIONS(1197), + [anon_sym_import] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_public] = ACTIONS(1197), + [anon_sym_protected] = ACTIONS(1197), + [anon_sym_private] = ACTIONS(1197), + [anon_sym_abstract] = ACTIONS(1197), + [anon_sym_strictfp] = ACTIONS(1197), + [anon_sym_native] = ACTIONS(1197), + [anon_sym_transient] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym_sealed] = ACTIONS(1197), + [anon_sym_non_DASHsealed] = ACTIONS(1199), + [anon_sym_record] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1199), + [anon_sym_interface] = ACTIONS(1197), + [anon_sym_byte] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [anon_sym_int] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_char] = ACTIONS(1197), + [anon_sym_float] = ACTIONS(1197), + [anon_sym_double] = ACTIONS(1197), + [sym_boolean_type] = ACTIONS(1197), + [sym_void_type] = ACTIONS(1197), + [sym_this] = ACTIONS(1197), + [sym_super] = ACTIONS(1197), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [404] = { - [sym__literal] = STATE(568), - [sym_string_literal] = STATE(542), - [sym__string_literal] = STATE(570), - [sym__multiline_string_literal] = STATE(570), - [sym_lambda_expression] = STATE(602), - [sym_inferred_parameters] = STATE(1348), - [sym_primary_expression] = STATE(512), - [sym_array_creation_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_class_literal] = STATE(568), - [sym_object_creation_expression] = STATE(568), - [sym__unqualified_object_creation_expression] = STATE(573), - [sym_field_access] = STATE(568), - [sym_template_expression] = STATE(568), - [sym_array_access] = STATE(568), - [sym_method_invocation] = STATE(568), - [sym_method_reference] = STATE(568), - [sym__annotation] = STATE(781), - [sym_marker_annotation] = STATE(781), - [sym_annotation] = STATE(781), - [sym__type] = STATE(1310), - [sym__unannotated_type] = STATE(886), - [sym_annotated_type] = STATE(906), - [sym_scoped_type_identifier] = STATE(815), - [sym_generic_type] = STATE(832), - [sym_array_type] = STATE(753), - [sym_integral_type] = STATE(753), - [sym_floating_point_type] = STATE(753), - [sym_formal_parameters] = STATE(1348), - [sym__reserved_identifier] = STATE(498), - [aux_sym_array_creation_expression_repeat1] = STATE(781), - [sym_identifier] = ACTIONS(1245), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(9), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [anon_sym_DQUOTE] = ACTIONS(13), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_new] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(1241), - [anon_sym_AT] = ACTIONS(424), - [anon_sym_open] = ACTIONS(1241), - [anon_sym_module] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(1241), - [anon_sym_sealed] = ACTIONS(1241), - [anon_sym_record] = ACTIONS(1241), - [anon_sym_byte] = ACTIONS(87), - [anon_sym_short] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_long] = ACTIONS(87), - [anon_sym_char] = ACTIONS(87), - [anon_sym_float] = ACTIONS(89), - [anon_sym_double] = ACTIONS(89), - [sym_boolean_type] = ACTIONS(91), - [sym_void_type] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(1243), + [STATE(394)] = { + [sym_identifier] = ACTIONS(1201), + [sym_decimal_integer_literal] = ACTIONS(1201), + [sym_hex_integer_literal] = ACTIONS(1201), + [sym_octal_integer_literal] = ACTIONS(1201), + [sym_binary_integer_literal] = ACTIONS(1203), + [sym_decimal_floating_point_literal] = ACTIONS(1203), + [sym_hex_floating_point_literal] = ACTIONS(1201), + [sym_true] = ACTIONS(1201), + [sym_false] = ACTIONS(1201), + [sym_character_literal] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_RBRACE] = ACTIONS(1203), + [sym_null_literal] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_final] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1203), + [anon_sym_DASH_DASH] = ACTIONS(1203), + [anon_sym_new] = ACTIONS(1201), + [anon_sym_class] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1203), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_assert] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_yield] = ACTIONS(1201), + [anon_sym_synchronized] = ACTIONS(1201), + [anon_sym_throw] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_AT] = ACTIONS(1201), + [anon_sym_open] = ACTIONS(1201), + [anon_sym_module] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_package] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_public] = ACTIONS(1201), + [anon_sym_protected] = ACTIONS(1201), + [anon_sym_private] = ACTIONS(1201), + [anon_sym_abstract] = ACTIONS(1201), + [anon_sym_strictfp] = ACTIONS(1201), + [anon_sym_native] = ACTIONS(1201), + [anon_sym_transient] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [anon_sym_sealed] = ACTIONS(1201), + [anon_sym_non_DASHsealed] = ACTIONS(1203), + [anon_sym_record] = ACTIONS(1201), + [anon_sym_ATinterface] = ACTIONS(1203), + [anon_sym_interface] = ACTIONS(1201), + [anon_sym_byte] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [anon_sym_int] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_float] = ACTIONS(1201), + [anon_sym_double] = ACTIONS(1201), + [sym_boolean_type] = ACTIONS(1201), + [sym_void_type] = ACTIONS(1201), + [sym_this] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 28, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(31), 1, + anon_sym_class, + ACTIONS(35), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(73), 1, + anon_sym_enum, + ACTIONS(75), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, + anon_sym_record, + ACTIONS(79), 1, + anon_sym_ATinterface, + ACTIONS(81), 1, + anon_sym_interface, + ACTIONS(1205), 1, + sym_identifier, + ACTIONS(1207), 1, + anon_sym_RBRACE, + ACTIONS(1209), 1, + anon_sym_SEMI, + ACTIONS(1211), 1, + anon_sym_static, + STATE(664), 1, + sym_modifiers, + STATE(731), 1, + sym_type_parameters, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(799), 1, + sym__unannotated_type, + STATE(993), 1, + sym__constructor_declarator, + STATE(1088), 1, + sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(422), 26, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(420), 35, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_instanceof, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(469), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(23), 12, anon_sym_final, - anon_sym_COLON, anon_sym_default, - anon_sym_when, anon_sym_synchronized, - anon_sym_static, anon_sym_public, anon_sym_protected, anon_sym_private, @@ -49030,17 +47826,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [70] = 28, + STATE(399), 12, + sym_block, + sym_enum_declaration, + sym_class_declaration, + sym_static_initializer, + sym_constructor_declaration, + sym_field_declaration, + sym_record_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_method_declaration, + sym_compact_constructor_declaration, + aux_sym_enum_body_declarations_repeat1, + [119] = 28, ACTIONS(19), 1, anon_sym_LT, ACTIONS(31), 1, @@ -49049,57 +47848,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(75), 1, + ACTIONS(73), 1, anon_sym_enum, - ACTIONS(79), 1, + ACTIONS(75), 1, anon_sym_non_DASHsealed, - ACTIONS(83), 1, + ACTIONS(77), 1, + anon_sym_record, + ACTIONS(79), 1, anon_sym_ATinterface, - ACTIONS(85), 1, + ACTIONS(81), 1, anon_sym_interface, - ACTIONS(1247), 1, + ACTIONS(1205), 1, sym_identifier, - ACTIONS(1249), 1, + ACTIONS(1211), 1, + anon_sym_static, + ACTIONS(1213), 1, anon_sym_RBRACE, - ACTIONS(1251), 1, + ACTIONS(1215), 1, anon_sym_SEMI, - ACTIONS(1253), 1, - anon_sym_static, - ACTIONS(1255), 1, - anon_sym_record, - STATE(689), 1, + STATE(664), 1, sym_modifiers, - STATE(695), 1, - sym_scoped_type_identifier, + STATE(731), 1, + sym_type_parameters, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(774), 1, - sym_type_parameters, - STATE(775), 1, + STATE(799), 1, sym__unannotated_type, - STATE(1013), 1, + STATE(993), 1, sym__constructor_declarator, - STATE(1166), 1, + STATE(1088), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -49118,7 +47917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(409), 12, + STATE(398), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -49131,72 +47930,72 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, - [189] = 28, - ACTIONS(19), 1, + [238] = 28, + ACTIONS(1217), 1, + sym_identifier, + ACTIONS(1220), 1, + anon_sym_RBRACE, + ACTIONS(1222), 1, anon_sym_LT, - ACTIONS(31), 1, + ACTIONS(1228), 1, anon_sym_class, - ACTIONS(35), 1, + ACTIONS(1231), 1, anon_sym_LBRACE, - ACTIONS(63), 1, + ACTIONS(1234), 1, + anon_sym_SEMI, + ACTIONS(1237), 1, anon_sym_AT, - ACTIONS(75), 1, + ACTIONS(1240), 1, + anon_sym_static, + ACTIONS(1243), 1, anon_sym_enum, - ACTIONS(79), 1, + ACTIONS(1246), 1, anon_sym_non_DASHsealed, - ACTIONS(83), 1, + ACTIONS(1249), 1, + anon_sym_record, + ACTIONS(1252), 1, anon_sym_ATinterface, - ACTIONS(85), 1, - anon_sym_interface, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(1253), 1, - anon_sym_static, ACTIONS(1255), 1, - anon_sym_record, - ACTIONS(1257), 1, - anon_sym_RBRACE, - ACTIONS(1259), 1, - anon_sym_SEMI, - STATE(689), 1, + anon_sym_interface, + STATE(664), 1, sym_modifiers, - STATE(695), 1, - sym_scoped_type_identifier, + STATE(731), 1, + sym_type_parameters, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(774), 1, - sym_type_parameters, - STATE(775), 1, + STATE(799), 1, sym__unannotated_type, - STATE(1013), 1, + STATE(993), 1, sym__constructor_declarator, - STATE(1166), 1, + STATE(1088), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(1261), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(1264), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(87), 5, + ACTIONS(1258), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(23), 12, + ACTIONS(1225), 12, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -49209,7 +48008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(410), 12, + STATE(397), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -49222,7 +48021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, - [308] = 28, + [357] = 28, ACTIONS(19), 1, anon_sym_LT, ACTIONS(31), 1, @@ -49231,57 +48030,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(75), 1, + ACTIONS(73), 1, anon_sym_enum, - ACTIONS(79), 1, + ACTIONS(75), 1, anon_sym_non_DASHsealed, - ACTIONS(83), 1, + ACTIONS(77), 1, + anon_sym_record, + ACTIONS(79), 1, anon_sym_ATinterface, - ACTIONS(85), 1, + ACTIONS(81), 1, anon_sym_interface, - ACTIONS(1247), 1, + ACTIONS(1205), 1, sym_identifier, - ACTIONS(1253), 1, + ACTIONS(1211), 1, anon_sym_static, - ACTIONS(1255), 1, - anon_sym_record, - ACTIONS(1261), 1, + ACTIONS(1267), 1, anon_sym_RBRACE, - ACTIONS(1263), 1, + ACTIONS(1269), 1, anon_sym_SEMI, - STATE(689), 1, + STATE(664), 1, sym_modifiers, - STATE(695), 1, - sym_scoped_type_identifier, + STATE(731), 1, + sym_type_parameters, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(774), 1, - sym_type_parameters, - STATE(775), 1, + STATE(799), 1, sym__unannotated_type, - STATE(1013), 1, + STATE(993), 1, sym__constructor_declarator, - STATE(1166), 1, + STATE(1088), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -49300,7 +48099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(407), 12, + STATE(397), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -49313,7 +48112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, - [427] = 28, + [476] = 28, ACTIONS(19), 1, anon_sym_LT, ACTIONS(31), 1, @@ -49322,57 +48121,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(75), 1, + ACTIONS(73), 1, anon_sym_enum, - ACTIONS(79), 1, + ACTIONS(75), 1, anon_sym_non_DASHsealed, - ACTIONS(83), 1, + ACTIONS(77), 1, + anon_sym_record, + ACTIONS(79), 1, anon_sym_ATinterface, - ACTIONS(85), 1, + ACTIONS(81), 1, anon_sym_interface, - ACTIONS(1247), 1, + ACTIONS(1205), 1, sym_identifier, - ACTIONS(1253), 1, + ACTIONS(1211), 1, anon_sym_static, - ACTIONS(1255), 1, - anon_sym_record, - ACTIONS(1259), 1, + ACTIONS(1269), 1, anon_sym_SEMI, - ACTIONS(1265), 1, + ACTIONS(1271), 1, anon_sym_RBRACE, - STATE(689), 1, + STATE(664), 1, sym_modifiers, - STATE(695), 1, - sym_scoped_type_identifier, + STATE(731), 1, + sym_type_parameters, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(774), 1, - sym_type_parameters, - STATE(775), 1, + STATE(799), 1, sym__unannotated_type, - STATE(1013), 1, + STATE(993), 1, sym__constructor_declarator, - STATE(1166), 1, + STATE(1088), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -49391,7 +48190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - STATE(410), 12, + STATE(397), 12, sym_block, sym_enum_declaration, sym_class_declaration, @@ -49404,385 +48203,242 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_compact_constructor_declaration, aux_sym_enum_body_declarations_repeat1, - [546] = 28, - ACTIONS(1267), 1, - sym_identifier, - ACTIONS(1270), 1, - anon_sym_RBRACE, - ACTIONS(1272), 1, - anon_sym_LT, - ACTIONS(1278), 1, - anon_sym_class, - ACTIONS(1281), 1, - anon_sym_LBRACE, - ACTIONS(1284), 1, - anon_sym_SEMI, - ACTIONS(1287), 1, + [595] = 28, + ACTIONS(13), 1, + anon_sym_DQUOTE, + ACTIONS(15), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(29), 1, + anon_sym_new, + ACTIONS(89), 1, + sym_this, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1290), 1, - anon_sym_static, - ACTIONS(1293), 1, - anon_sym_enum, - ACTIONS(1296), 1, - anon_sym_non_DASHsealed, - ACTIONS(1299), 1, - anon_sym_record, - ACTIONS(1302), 1, - anon_sym_ATinterface, - ACTIONS(1305), 1, - anon_sym_interface, - STATE(689), 1, - sym_modifiers, - STATE(695), 1, + ACTIONS(1273), 1, + sym_identifier, + ACTIONS(1275), 1, + anon_sym_LPAREN, + ACTIONS(1277), 1, + sym_super, + STATE(517), 1, + sym_primary_expression, + STATE(526), 1, + sym__unqualified_object_creation_expression, + STATE(543), 1, + sym_string_literal, + STATE(559), 1, + sym_lambda_expression, + STATE(831), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(849), 1, + sym__unannotated_type, + STATE(853), 1, sym_generic_type, - STATE(774), 1, - sym_type_parameters, - STATE(775), 1, + STATE(858), 1, + sym_annotated_type, + STATE(1277), 1, + sym__type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(489), 2, + sym__string_literal, + sym__multiline_string_literal, + STATE(1314), 2, + sym_inferred_parameters, + sym_formal_parameters, + ACTIONS(11), 3, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(732), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(9), 7, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_octal_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + sym_null_literal, + STATE(510), 10, + sym__literal, + sym_array_creation_expression, + sym_parenthesized_expression, + sym_class_literal, + sym_object_creation_expression, + sym_field_access, + sym_template_expression, + sym_array_access, + sym_method_invocation, + sym_method_reference, + [711] = 28, + ACTIONS(13), 1, + anon_sym_DQUOTE, + ACTIONS(15), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(29), 1, + anon_sym_new, + ACTIONS(89), 1, + sym_this, + ACTIONS(491), 1, + anon_sym_AT, + ACTIONS(1275), 1, + anon_sym_LPAREN, + ACTIONS(1277), 1, + sym_super, + ACTIONS(1279), 1, + sym_identifier, + STATE(517), 1, + sym_primary_expression, + STATE(526), 1, + sym__unqualified_object_creation_expression, + STATE(543), 1, + sym_string_literal, + STATE(559), 1, + sym_lambda_expression, + STATE(831), 1, + sym_scoped_type_identifier, + STATE(849), 1, sym__unannotated_type, - STATE(1013), 1, - sym__constructor_declarator, - STATE(1166), 1, - sym__method_header, + STATE(853), 1, + sym_generic_type, + STATE(858), 1, + sym_annotated_type, + STATE(1277), 1, + sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1311), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(1314), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(489), 2, + sym__string_literal, + sym__multiline_string_literal, + STATE(1299), 2, + sym_inferred_parameters, + sym_formal_parameters, + ACTIONS(11), 3, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(732), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1308), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(1275), 12, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - STATE(410), 12, - sym_block, - sym_enum_declaration, - sym_class_declaration, - sym_static_initializer, - sym_constructor_declaration, - sym_field_declaration, - sym_record_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_method_declaration, - sym_compact_constructor_declaration, - aux_sym_enum_body_declarations_repeat1, - [665] = 14, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1325), 1, - anon_sym_EQ, - ACTIONS(1329), 1, - anon_sym_LT, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1317), 8, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1327), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1319), 14, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_SEMI, - ACTIONS(1323), 15, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_COLON, - anon_sym_when, - [754] = 17, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1325), 1, - anon_sym_EQ, - ACTIONS(1329), 1, - anon_sym_LT, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1343), 1, - anon_sym_RPAREN, - ACTIONS(1346), 1, - anon_sym_COMMA, - ACTIONS(1348), 1, - anon_sym_DOT, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, - sym_type_arguments, - STATE(1153), 1, - aux_sym_inferred_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1341), 2, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1317), 9, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1319), 9, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1327), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - [847] = 18, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1325), 1, - anon_sym_EQ, - ACTIONS(1329), 1, - anon_sym_LT, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1346), 1, - anon_sym_COMMA, - ACTIONS(1348), 1, - anon_sym_DOT, - ACTIONS(1352), 1, - anon_sym_RPAREN, - ACTIONS(1356), 1, - anon_sym_AMP, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, - sym_type_arguments, - STATE(1153), 1, - aux_sym_inferred_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1341), 2, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1317), 9, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1319), 9, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1327), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 12, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - [942] = 25, + ACTIONS(9), 7, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_octal_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + sym_null_literal, + STATE(510), 10, + sym__literal, + sym_array_creation_expression, + sym_parenthesized_expression, + sym_class_literal, + sym_object_creation_expression, + sym_field_access, + sym_template_expression, + sym_array_access, + sym_method_invocation, + sym_method_reference, + [827] = 25, ACTIONS(19), 1, anon_sym_LT, ACTIONS(31), 1, anon_sym_class, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(75), 1, + ACTIONS(73), 1, anon_sym_enum, - ACTIONS(79), 1, + ACTIONS(75), 1, anon_sym_non_DASHsealed, - ACTIONS(83), 1, + ACTIONS(77), 1, + anon_sym_record, + ACTIONS(79), 1, anon_sym_ATinterface, - ACTIONS(85), 1, + ACTIONS(81), 1, anon_sym_interface, - ACTIONS(1255), 1, - anon_sym_record, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1361), 1, + ACTIONS(1283), 1, anon_sym_RBRACE, - ACTIONS(1363), 1, + ACTIONS(1285), 1, anon_sym_SEMI, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(718), 1, + STATE(688), 1, sym_modifiers, + STATE(740), 1, + sym_type_parameters, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(776), 1, - sym_type_parameters, - STATE(780), 1, + STATE(798), 1, sym__unannotated_type, - STATE(1166), 1, + STATE(1088), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(416), 8, + STATE(403), 8, sym_enum_declaration, sym_class_declaration, sym_record_declaration, @@ -49805,138 +48461,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1049] = 15, - ACTIONS(1329), 1, - anon_sym_LT, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_EQ, - ACTIONS(1371), 1, - anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, - STATE(607), 1, - sym_record_pattern_body, - STATE(735), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1317), 7, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, + [934] = 25, + ACTIONS(1287), 1, sym_identifier, - ACTIONS(1319), 10, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 15, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_COLON, - anon_sym_when, - [1136] = 25, - ACTIONS(19), 1, + ACTIONS(1290), 1, + anon_sym_RBRACE, + ACTIONS(1292), 1, anon_sym_LT, - ACTIONS(31), 1, + ACTIONS(1298), 1, anon_sym_class, - ACTIONS(63), 1, + ACTIONS(1301), 1, + anon_sym_SEMI, + ACTIONS(1304), 1, anon_sym_AT, - ACTIONS(75), 1, + ACTIONS(1307), 1, anon_sym_enum, - ACTIONS(79), 1, + ACTIONS(1310), 1, anon_sym_non_DASHsealed, - ACTIONS(83), 1, + ACTIONS(1313), 1, + anon_sym_record, + ACTIONS(1316), 1, anon_sym_ATinterface, - ACTIONS(85), 1, + ACTIONS(1319), 1, anon_sym_interface, - ACTIONS(1255), 1, - anon_sym_record, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(1374), 1, - anon_sym_RBRACE, - ACTIONS(1376), 1, - anon_sym_SEMI, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(718), 1, + STATE(688), 1, sym_modifiers, + STATE(740), 1, + sym_type_parameters, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(776), 1, - sym_type_parameters, - STATE(780), 1, + STATE(798), 1, sym__unannotated_type, - STATE(1166), 1, + STATE(1088), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(1325), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(1328), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(87), 5, + ACTIONS(1322), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(418), 8, + STATE(403), 8, sym_enum_declaration, sym_class_declaration, sym_record_declaration, @@ -49945,7 +48529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(23), 13, + ACTIONS(1295), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -49959,138 +48543,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1243] = 15, - ACTIONS(1325), 1, - anon_sym_EQ, - ACTIONS(1329), 1, - anon_sym_LT, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - STATE(569), 1, - sym_argument_list, - STATE(607), 1, - sym_record_pattern_body, - STATE(735), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1317), 7, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1319), 10, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1327), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 15, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_COLON, - anon_sym_when, - [1330] = 25, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1381), 1, - anon_sym_RBRACE, - ACTIONS(1383), 1, + [1041] = 25, + ACTIONS(19), 1, anon_sym_LT, - ACTIONS(1389), 1, + ACTIONS(31), 1, anon_sym_class, - ACTIONS(1392), 1, - anon_sym_SEMI, - ACTIONS(1395), 1, + ACTIONS(63), 1, anon_sym_AT, - ACTIONS(1398), 1, + ACTIONS(73), 1, anon_sym_enum, - ACTIONS(1401), 1, + ACTIONS(75), 1, anon_sym_non_DASHsealed, - ACTIONS(1404), 1, + ACTIONS(77), 1, anon_sym_record, - ACTIONS(1407), 1, + ACTIONS(79), 1, anon_sym_ATinterface, - ACTIONS(1410), 1, + ACTIONS(81), 1, anon_sym_interface, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(718), 1, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1331), 1, + anon_sym_RBRACE, + ACTIONS(1333), 1, + anon_sym_SEMI, + STATE(688), 1, sym_modifiers, + STATE(740), 1, + sym_type_parameters, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(776), 1, - sym_type_parameters, - STATE(780), 1, + STATE(798), 1, sym__unannotated_type, - STATE(1166), 1, + STATE(1088), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(1419), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1413), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(418), 8, + STATE(402), 8, sym_enum_declaration, sym_class_declaration, sym_record_declaration, @@ -50099,7 +48611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constant_declaration, sym_method_declaration, aux_sym_interface_body_repeat1, - ACTIONS(1386), 13, + ACTIONS(23), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -50113,52 +48625,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1437] = 15, - ACTIONS(1321), 1, + [1148] = 14, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1325), 1, + ACTIONS(1343), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1347), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1350), 1, anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1355), 1, anon_sym_DOT, - ACTIONS(1341), 1, + ACTIONS(1359), 1, anon_sym_AT, - ACTIONS(1422), 1, - anon_sym_COLON, - STATE(569), 1, + STATE(485), 1, sym_argument_list, - STATE(735), 1, + STATE(764), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1317), 8, + ACTIONS(1335), 2, sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, sym_identifier, - ACTIONS(1319), 10, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - ACTIONS(1327), 11, + ACTIONS(1352), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1345), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50170,78 +48663,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - [1523] = 15, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1325), 1, - anon_sym_EQ, - ACTIONS(1329), 1, - anon_sym_LT, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - ACTIONS(1424), 1, - anon_sym_COLON, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1317), 8, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1319), 10, + ACTIONS(1337), 14, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_RBRACK, anon_sym_SEMI, - ACTIONS(1327), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, + ACTIONS(1341), 15, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -50255,41 +48692,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1609] = 15, - ACTIONS(1321), 1, + anon_sym_COLON, + anon_sym_when, + [1231] = 18, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1325), 1, + ACTIONS(1343), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1347), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1350), 1, anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1361), 1, + anon_sym_RPAREN, + ACTIONS(1365), 1, + anon_sym_AMP, + ACTIONS(1368), 1, + anon_sym_COMMA, + ACTIONS(1370), 1, anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - ACTIONS(1426), 1, - anon_sym_COLON, - STATE(569), 1, + STATE(485), 1, sym_argument_list, - STATE(735), 1, + STATE(764), 1, sym_type_arguments, + STATE(1073), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1352), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1317), 8, + ACTIONS(1359), 2, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1335), 3, sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, + sym_this, sym_identifier, - ACTIONS(1319), 10, + ACTIONS(1337), 9, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -50299,8 +48740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_SEMI, - ACTIONS(1327), 11, + ACTIONS(1345), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50312,8 +48752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, - anon_sym_AMP, + ACTIONS(1341), 12, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, @@ -50326,52 +48765,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1695] = 15, - ACTIONS(1325), 1, + [1320] = 17, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(1343), 1, anon_sym_EQ, - ACTIONS(1329), 1, + ACTIONS(1347), 1, anon_sym_LT, - ACTIONS(1332), 1, + ACTIONS(1350), 1, anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1368), 1, + anon_sym_COMMA, + ACTIONS(1370), 1, anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - ACTIONS(1428), 1, - anon_sym_LPAREN, - STATE(569), 1, + ACTIONS(1374), 1, + anon_sym_RPAREN, + STATE(485), 1, sym_argument_list, - STATE(607), 1, - sym_record_pattern_body, - STATE(735), 1, + STATE(764), 1, sym_type_arguments, + STATE(1073), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1352), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1317), 7, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, + ACTIONS(1359), 2, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1335), 3, + sym_underscore_pattern, + sym_this, sym_identifier, - ACTIONS(1319), 11, - anon_sym_RPAREN, + ACTIONS(1337), 9, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1327), 11, + ACTIONS(1345), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50383,41 +48821,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - [1781] = 6, - ACTIONS(1430), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1112), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - ACTIONS(420), 15, + ACTIONS(1341), 13, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -50429,85 +48835,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - ACTIONS(422), 26, - anon_sym_LPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - [1846] = 21, + [1407] = 21, ACTIONS(31), 1, anon_sym_class, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(75), 1, + ACTIONS(73), 1, anon_sym_enum, - ACTIONS(79), 1, + ACTIONS(75), 1, anon_sym_non_DASHsealed, - ACTIONS(83), 1, + ACTIONS(79), 1, anon_sym_ATinterface, - ACTIONS(85), 1, + ACTIONS(81), 1, anon_sym_interface, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(1432), 1, + ACTIONS(1377), 1, anon_sym_RBRACE, - ACTIONS(1434), 1, + ACTIONS(1379), 1, anon_sym_SEMI, - STATE(695), 1, - sym_scoped_type_identifier, + STATE(746), 1, + sym_modifiers, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(793), 1, + STATE(809), 1, sym__unannotated_type, - STATE(802), 1, - sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(426), 7, + STATE(409), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -50529,58 +48908,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1940] = 21, - ACTIONS(31), 1, + [1501] = 21, + ACTIONS(1381), 1, + sym_identifier, + ACTIONS(1384), 1, + anon_sym_RBRACE, + ACTIONS(1389), 1, anon_sym_class, - ACTIONS(63), 1, + ACTIONS(1392), 1, + anon_sym_SEMI, + ACTIONS(1395), 1, anon_sym_AT, - ACTIONS(75), 1, + ACTIONS(1398), 1, anon_sym_enum, - ACTIONS(79), 1, + ACTIONS(1401), 1, anon_sym_non_DASHsealed, - ACTIONS(83), 1, + ACTIONS(1404), 1, anon_sym_ATinterface, - ACTIONS(85), 1, + ACTIONS(1407), 1, anon_sym_interface, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(1436), 1, - anon_sym_RBRACE, - ACTIONS(1438), 1, - anon_sym_SEMI, - STATE(695), 1, - sym_scoped_type_identifier, + STATE(746), 1, + sym_modifiers, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(793), 1, + STATE(809), 1, sym__unannotated_type, - STATE(802), 1, - sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(1413), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(1416), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(87), 5, + ACTIONS(1410), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(424), 7, + STATE(409), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -50588,7 +48967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(23), 13, + ACTIONS(1386), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -50602,58 +48981,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [2034] = 21, - ACTIONS(1440), 1, - sym_identifier, - ACTIONS(1443), 1, - anon_sym_RBRACE, - ACTIONS(1448), 1, + [1595] = 21, + ACTIONS(31), 1, anon_sym_class, - ACTIONS(1451), 1, - anon_sym_SEMI, - ACTIONS(1454), 1, + ACTIONS(63), 1, anon_sym_AT, - ACTIONS(1457), 1, + ACTIONS(73), 1, anon_sym_enum, - ACTIONS(1460), 1, + ACTIONS(75), 1, anon_sym_non_DASHsealed, - ACTIONS(1463), 1, + ACTIONS(79), 1, anon_sym_ATinterface, - ACTIONS(1466), 1, + ACTIONS(81), 1, anon_sym_interface, - STATE(695), 1, - sym_scoped_type_identifier, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1419), 1, + anon_sym_RBRACE, + ACTIONS(1421), 1, + anon_sym_SEMI, + STATE(746), 1, + sym_modifiers, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(793), 1, + STATE(809), 1, sym__unannotated_type, - STATE(802), 1, - sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1472), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(1475), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(509), 4, + STATE(469), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1469), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(426), 7, + STATE(408), 7, sym_enum_declaration, sym_class_declaration, sym_annotation_type_declaration, @@ -50661,7 +49040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_constant_declaration, aux_sym_annotation_type_body_repeat1, - ACTIONS(1445), 13, + ACTIONS(23), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -50675,148 +49054,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [2128] = 8, - ACTIONS(1321), 1, + [1689] = 15, + ACTIONS(1335), 1, + sym_identifier, + ACTIONS(1347), 1, + anon_sym_LT, + ACTIONS(1355), 1, + anon_sym_DOT, + ACTIONS(1359), 1, + anon_sym_AT, + ACTIONS(1423), 1, anon_sym_LPAREN, - ACTIONS(1325), 1, + ACTIONS(1425), 1, anon_sym_EQ, - ACTIONS(1332), 1, + ACTIONS(1429), 1, anon_sym_DASH_GT, - STATE(569), 1, + STATE(485), 1, sym_argument_list, + STATE(574), 1, + sym_record_pattern_body, + STATE(764), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1327), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1319), 19, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1352), 2, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [2195] = 5, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(543), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1480), 15, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1478), 31, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, + ACTIONS(1337), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [2256] = 5, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(541), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1484), 15, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1482), 31, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1427), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -50828,143 +49104,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [2317] = 7, - ACTIONS(1490), 1, - anon_sym_LBRACK, - ACTIONS(1493), 1, - anon_sym_AT, - STATE(430), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(962), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1486), 18, + ACTIONS(1341), 15, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_COLON, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1488), 22, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_CARET, anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - [2381] = 7, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1500), 1, - anon_sym_LBRACK, - STATE(430), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(962), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1496), 18, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_COLON, anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1498), 22, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - [2445] = 3, + [1770] = 5, + ACTIONS(1339), 1, + anon_sym_LPAREN, + STATE(498), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1484), 15, + ACTIONS(1434), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -50980,7 +49144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1482), 31, + ACTIONS(1432), 31, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_PLUS_EQ, @@ -51012,87 +49176,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [2500] = 8, - ACTIONS(464), 1, + [1831] = 15, + ACTIONS(1335), 1, + sym_identifier, + ACTIONS(1343), 1, + anon_sym_EQ, + ACTIONS(1347), 1, + anon_sym_LT, + ACTIONS(1350), 1, + anon_sym_DASH_GT, + ACTIONS(1355), 1, + anon_sym_DOT, + ACTIONS(1359), 1, anon_sym_AT, - ACTIONS(1500), 1, - anon_sym_LBRACK, - STATE(431), 1, - aux_sym_dimensions_repeat1, - STATE(475), 1, - sym_dimensions, + ACTIONS(1423), 1, + anon_sym_LPAREN, + STATE(485), 1, + sym_argument_list, + STATE(574), 1, + sym_record_pattern_body, + STATE(764), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(962), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1502), 17, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1504), 21, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1352), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1337), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_SEMI, - [2565] = 13, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - anon_sym_LT, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - ACTIONS(1367), 1, - anon_sym_EQ, - ACTIONS(1371), 1, - anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1369), 11, + ACTIONS(1345), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51104,20 +49226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1319), 12, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_when, - ACTIONS(1323), 13, + ACTIONS(1341), 15, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -51130,69 +49239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_COLON, - [2640] = 8, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1500), 1, - anon_sym_LBRACK, - STATE(431), 1, - aux_sym_dimensions_repeat1, - STATE(475), 1, - sym_dimensions, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(962), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1506), 17, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1508), 21, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_SEMI, - [2705] = 3, + anon_sym_when, + [1912] = 5, + ACTIONS(1339), 1, + anon_sym_LPAREN, + STATE(522), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1512), 15, + ACTIONS(1438), 15, anon_sym_AMP, anon_sym_EQ, anon_sym_GT, @@ -51208,7 +49266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1510), 31, + ACTIONS(1436), 31, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_PLUS_EQ, @@ -51240,73 +49298,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [2760] = 3, + [1973] = 15, + ACTIONS(1335), 1, + sym_identifier, + ACTIONS(1343), 1, + anon_sym_EQ, + ACTIONS(1347), 1, + anon_sym_LT, + ACTIONS(1350), 1, + anon_sym_DASH_GT, + ACTIONS(1355), 1, + anon_sym_DOT, + ACTIONS(1359), 1, + anon_sym_AT, + ACTIONS(1440), 1, + anon_sym_LPAREN, + STATE(485), 1, + sym_argument_list, + STATE(574), 1, + sym_record_pattern_body, + STATE(764), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1480), 15, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1478), 31, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, + ACTIONS(1352), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1337), 11, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [2815] = 9, - ACTIONS(1365), 1, - anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_EQ, - ACTIONS(1371), 1, - anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, - STATE(607), 1, - sym_record_pattern_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1369), 11, + ACTIONS(1345), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51318,10 +49349,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, + ACTIONS(1341), 13, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -51332,30 +49362,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, + anon_sym_instanceof, + [2053] = 15, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(1343), 1, + anon_sym_EQ, + ACTIONS(1347), 1, + anon_sym_LT, + ACTIONS(1350), 1, + anon_sym_DASH_GT, + ACTIONS(1355), 1, + anon_sym_DOT, + ACTIONS(1359), 1, + anon_sym_AT, + ACTIONS(1442), 1, anon_sym_COLON, - ACTIONS(1319), 15, + STATE(485), 1, + sym_argument_list, + STATE(764), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1335), 2, + sym_underscore_pattern, + sym_identifier, + ACTIONS(1352), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1337), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - [2881] = 5, - ACTIONS(1325), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1327), 11, + anon_sym_SEMI, + ACTIONS(1345), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51367,10 +49414,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, + ACTIONS(1341), 13, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -51381,42 +49427,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, + anon_sym_instanceof, + [2133] = 15, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(1343), 1, + anon_sym_EQ, + ACTIONS(1347), 1, + anon_sym_LT, + ACTIONS(1350), 1, + anon_sym_DASH_GT, + ACTIONS(1355), 1, + anon_sym_DOT, + ACTIONS(1359), 1, + anon_sym_AT, + ACTIONS(1444), 1, anon_sym_COLON, - ACTIONS(1319), 19, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(485), 1, + sym_argument_list, + STATE(764), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1335), 2, + sym_underscore_pattern, + sym_identifier, + ACTIONS(1352), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1337), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, - [2939] = 9, - ACTIONS(1325), 1, - anon_sym_EQ, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1365), 1, - anon_sym_LPAREN, - STATE(569), 1, - sym_argument_list, - STATE(607), 1, - sym_record_pattern_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1327), 11, + ACTIONS(1345), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51428,10 +49479,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, + ACTIONS(1341), 13, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -51442,42 +49492,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, + anon_sym_instanceof, + [2213] = 15, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(1343), 1, + anon_sym_EQ, + ACTIONS(1347), 1, + anon_sym_LT, + ACTIONS(1350), 1, + anon_sym_DASH_GT, + ACTIONS(1355), 1, + anon_sym_DOT, + ACTIONS(1359), 1, + anon_sym_AT, + ACTIONS(1446), 1, anon_sym_COLON, - ACTIONS(1319), 15, + STATE(485), 1, + sym_argument_list, + STATE(764), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1335), 2, + sym_underscore_pattern, + sym_identifier, + ACTIONS(1352), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1337), 10, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - [3005] = 11, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1325), 1, - anon_sym_EQ, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1343), 1, - anon_sym_RPAREN, - ACTIONS(1346), 1, - anon_sym_COMMA, - STATE(569), 1, - sym_argument_list, - STATE(1153), 1, - aux_sym_inferred_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1327), 11, + anon_sym_SEMI, + ACTIONS(1345), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51489,24 +49544,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1319), 13, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(1323), 13, + ACTIONS(1341), 13, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -51517,74 +49557,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - [3074] = 8, - ACTIONS(1514), 1, - anon_sym_LPAREN, - ACTIONS(1516), 1, - anon_sym_LT, - ACTIONS(1519), 1, - anon_sym_DOT, - STATE(453), 1, - sym_type_arguments, - STATE(607), 1, - sym_record_pattern_body, + anon_sym_instanceof, + [2293] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 16, + ACTIONS(1434), 15, anon_sym_AMP, + anon_sym_EQ, anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1341), 23, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1432), 31, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_AT, - [3137] = 8, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1367), 1, - anon_sym_EQ, - ACTIONS(1371), 1, - anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, + [2348] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 11, + ACTIONS(1438), 15, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1436), 31, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51596,8 +49644,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, + anon_sym_SEMI, + [2403] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1450), 15, anon_sym_AMP, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, @@ -51611,7 +49682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1319), 15, + ACTIONS(1448), 31, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -51619,50 +49703,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_when, - [3200] = 13, - ACTIONS(1321), 1, + anon_sym_SEMI, + [2458] = 13, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1329), 1, + ACTIONS(1347), 1, anon_sym_LT, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1355), 1, anon_sym_DOT, - ACTIONS(1341), 1, + ACTIONS(1359), 1, anon_sym_AT, - ACTIONS(1521), 1, + ACTIONS(1425), 1, anon_sym_EQ, - STATE(569), 1, + ACTIONS(1429), 1, + anon_sym_DASH_GT, + STATE(485), 1, sym_argument_list, - STATE(735), 1, + STATE(764), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1352), 2, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(1319), 11, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1327), 11, + ACTIONS(1427), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51674,7 +49749,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 12, + ACTIONS(1337), 12, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_when, + ACTIONS(1341), 13, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -51687,21 +49775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - [3273] = 9, - ACTIONS(1325), 1, + anon_sym_COLON, + [2533] = 5, + ACTIONS(1343), 1, anon_sym_EQ, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1428), 1, - anon_sym_LPAREN, - STATE(569), 1, - sym_argument_list, - STATE(607), 1, - sym_record_pattern_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1327), 11, + ACTIONS(1345), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -51713,7 +49794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 13, + ACTIONS(1341), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51727,7 +49808,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - ACTIONS(1319), 15, + anon_sym_COLON, + ACTIONS(1337), 19, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -51741,40 +49824,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [3338] = 9, - ACTIONS(464), 1, + anon_sym_when, + anon_sym_SEMI, + [2591] = 13, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(1347), 1, + anon_sym_LT, + ACTIONS(1350), 1, + anon_sym_DASH_GT, + ACTIONS(1355), 1, + anon_sym_DOT, + ACTIONS(1359), 1, anon_sym_AT, - ACTIONS(1527), 1, - anon_sym_LBRACK, - STATE(431), 1, - aux_sym_dimensions_repeat1, - STATE(564), 1, - sym_dimensions, + ACTIONS(1452), 1, + anon_sym_EQ, + STATE(485), 1, + sym_argument_list, + STATE(764), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(464), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(963), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1525), 9, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1523), 24, - anon_sym_RBRACE, + ACTIONS(1352), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1337), 11, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -51782,95 +49860,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [3402] = 6, - ACTIONS(1514), 1, - anon_sym_LPAREN, - ACTIONS(1533), 1, - anon_sym_DOT, - STATE(607), 1, - sym_record_pattern_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1529), 17, + ACTIONS(1345), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1341), 12, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1531), 23, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_CARET, anon_sym_PERCENT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_AT, - [3460] = 9, - ACTIONS(464), 1, + [2664] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1527), 1, + ACTIONS(1458), 1, anon_sym_LBRACK, - STATE(431), 1, + STATE(432), 1, aux_sym_dimensions_repeat1, - STATE(567), 1, + STATE(544), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(464), 2, + STATE(433), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(963), 4, + STATE(898), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1537), 9, + ACTIONS(1456), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51880,7 +49919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1535), 24, + ACTIONS(1454), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -51905,27 +49944,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [3524] = 9, - ACTIONS(464), 1, + [2728] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1527), 1, + ACTIONS(1458), 1, anon_sym_LBRACK, - STATE(431), 1, + STATE(432), 1, aux_sym_dimensions_repeat1, - STATE(518), 1, + STATE(547), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(464), 2, + STATE(433), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(963), 4, + STATE(898), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1541), 9, + ACTIONS(1462), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51935,7 +49974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1539), 24, + ACTIONS(1460), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -51960,27 +49999,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [3588] = 9, - ACTIONS(464), 1, + [2792] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1527), 1, + ACTIONS(1458), 1, anon_sym_LBRACK, - STATE(431), 1, + STATE(432), 1, aux_sym_dimensions_repeat1, - STATE(521), 1, + STATE(483), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(464), 2, + STATE(433), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(963), 4, + STATE(898), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1545), 9, + ACTIONS(1466), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -51990,7 +50029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1543), 24, + ACTIONS(1464), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52015,209 +50054,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [3652] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1547), 17, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1549), 25, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_AT, - [3703] = 6, - ACTIONS(1516), 1, - anon_sym_LT, - ACTIONS(1519), 1, - anon_sym_DOT, - STATE(453), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 16, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1341), 23, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, + [2856] = 9, + ACTIONS(434), 1, anon_sym_AT, - [3760] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1551), 17, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1553), 25, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1458), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_AT, - [3811] = 4, - ACTIONS(1555), 1, - anon_sym_module, + STATE(432), 1, + aux_sym_dimensions_repeat1, + STATE(482), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(420), 14, + STATE(433), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(898), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1470), 9, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - ACTIONS(422), 27, - anon_sym_LPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, + anon_sym_COLON, + ACTIONS(1468), 24, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_DASH_GT, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - [3864] = 5, - ACTIONS(1367), 1, + [2920] = 5, + ACTIONS(1425), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 11, + ACTIONS(1427), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -52229,7 +50127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1323), 14, + ACTIONS(1341), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52244,7 +50142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1319), 16, + ACTIONS(1337), 16, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -52261,11 +50159,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_when, - [3919] = 3, + [2975] = 19, + ACTIONS(430), 1, + anon_sym_RPAREN, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(436), 1, + anon_sym_non_DASHsealed, + ACTIONS(1281), 1, + sym_identifier, + STATE(599), 1, + aux_sym_modifiers_repeat1, + STATE(734), 1, + aux_sym_array_creation_expression_repeat1, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(779), 1, + sym_modifiers, + STATE(795), 1, + sym__unannotated_type, + STATE(1196), 1, + sym_receiver_parameter, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(1030), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(672), 3, + sym__annotation, + sym_marker_annotation, + sym_annotation, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(432), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [3057] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1474), 8, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1472), 33, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_open, + anon_sym_module, + anon_sym_static, + anon_sym_to, + anon_sym_with, + anon_sym_package, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [3107] = 7, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(1480), 1, + anon_sym_LBRACK, + STATE(434), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1557), 18, + STATE(921), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1476), 12, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52277,14 +50296,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_COLON, anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, sym_identifier, - ACTIONS(1559), 24, + ACTIONS(1478), 22, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52303,17 +50316,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, + [3165] = 7, + ACTIONS(1486), 1, + anon_sym_LBRACK, + ACTIONS(1489), 1, anon_sym_AT, - [3970] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1486), 18, + STATE(433), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(900), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1484), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52322,17 +50345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, anon_sym_COLON, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1488), 24, + ACTIONS(1482), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52346,22 +50360,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, + [3223] = 7, + ACTIONS(1496), 1, + anon_sym_LBRACK, + ACTIONS(1499), 1, anon_sym_AT, - [4021] = 3, + STATE(434), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1561), 17, + STATE(921), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1492), 12, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52371,17 +50396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_instanceof, + anon_sym_COLON, anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, sym_identifier, - ACTIONS(1563), 25, + ACTIONS(1494), 22, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -52397,19 +50416,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_SEMI, + [3281] = 8, + ACTIONS(434), 1, anon_sym_AT, - [4072] = 3, + ACTIONS(1480), 1, + anon_sym_LBRACK, + STATE(432), 1, + aux_sym_dimensions_repeat1, + STATE(493), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1565), 17, + STATE(921), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1502), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52420,16 +50450,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_instanceof, anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, sym_identifier, - ACTIONS(1567), 25, + ACTIONS(1504), 21, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -52448,16 +50471,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_SEMI, + [3340] = 8, + ACTIONS(434), 1, anon_sym_AT, - [4123] = 3, + ACTIONS(1480), 1, + anon_sym_LBRACK, + STATE(432), 1, + aux_sym_dimensions_repeat1, + STATE(493), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1569), 17, + STATE(921), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1506), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52468,16 +50501,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_instanceof, anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, sym_identifier, - ACTIONS(1571), 25, + ACTIONS(1508), 21, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -52496,22 +50522,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_SEMI, + [3399] = 16, + ACTIONS(434), 1, anon_sym_AT, - [4174] = 6, - ACTIONS(1533), 1, - anon_sym_DOT, - ACTIONS(1573), 1, + ACTIONS(436), 1, + anon_sym_non_DASHsealed, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1510), 1, + anon_sym_RPAREN, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(779), 1, + sym_modifiers, + STATE(832), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(1087), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(599), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(432), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [3473] = 15, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(436), 1, + anon_sym_non_DASHsealed, + ACTIONS(1281), 1, + sym_identifier, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(779), 1, + sym_modifiers, + STATE(832), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(1195), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(599), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(432), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [3544] = 8, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1514), 1, anon_sym_LT, - STATE(451), 1, + ACTIONS(1517), 1, + anon_sym_DOT, + STATE(445), 1, sym_type_arguments, + STATE(574), 1, + sym_record_pattern_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 16, + ACTIONS(1335), 10, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -52521,14 +50662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_instanceof, anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, sym_identifier, - ACTIONS(1531), 23, + ACTIONS(1359), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52552,78 +50687,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_SEMI, anon_sym_AT, - [4231] = 4, - ACTIONS(1576), 1, + [3601] = 16, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(436), 1, + anon_sym_non_DASHsealed, + ACTIONS(1281), 1, sym_identifier, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(770), 1, + sym_modifiers, + STATE(833), 1, + sym__unannotated_type, + STATE(1078), 1, + sym_catch_type, + STATE(1287), 1, + sym_catch_formal_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(420), 15, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - ACTIONS(422), 26, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(599), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(432), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [3674] = 11, + ACTIONS(1339), 1, anon_sym_LPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1347), 1, + anon_sym_LT, + ACTIONS(1350), 1, anon_sym_DASH_GT, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, + ACTIONS(1355), 1, anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - [4284] = 3, + ACTIONS(1359), 1, + anon_sym_AT, + STATE(485), 1, + sym_argument_list, + STATE(764), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1578), 17, + ACTIONS(1352), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1341), 8, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1580), 24, + anon_sym_COLON, + ACTIONS(1337), 21, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52637,34 +50788,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_DASH_GT, + anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_when, anon_sym_SEMI, - anon_sym_AT, - [4334] = 7, - ACTIONS(1586), 1, - anon_sym_LBRACK, - ACTIONS(1589), 1, - anon_sym_AT, + [3737] = 6, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + anon_sym_DOT, + STATE(574), 1, + sym_record_pattern_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(464), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(974), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1584), 9, + ACTIONS(1519), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52673,8 +50815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1582), 24, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1521), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52688,52 +50832,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, - [4392] = 3, + anon_sym_AT, + [3789] = 6, + ACTIONS(1527), 1, + anon_sym_LPAREN, + ACTIONS(1531), 1, + anon_sym_DOT, + STATE(512), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1027), 11, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - sym_character_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, + ACTIONS(1529), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1525), 31, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - ACTIONS(1029), 30, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_octal_integer_literal, - sym_hex_floating_point_literal, - sym_true, - sym_false, - anon_sym_DQUOTE, - sym_null_literal, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_new, - anon_sym_switch, - anon_sym_yield, anon_sym_open, anon_sym_module, - anon_sym_with, + anon_sym_static, + anon_sym_package, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, anon_sym_sealed, anon_sym_record, + anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -52743,14 +50887,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, - sym_this, - sym_super, sym_identifier, - [4442] = 3, + [3841] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1533), 11, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1535), 25, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_AT, + [3886] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1592), 17, + ACTIONS(1537), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52761,15 +50945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_instanceof, anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, sym_identifier, - ACTIONS(1594), 24, + ACTIONS(1539), 25, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -52793,11 +50972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [4492] = 3, + [3931] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(531), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1596), 17, + ACTIONS(1543), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52806,16 +50989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1598), 24, + anon_sym_COLON, + ACTIONS(1541), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52829,71 +51004,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_AT, - [4542] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1602), 8, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_DOT, + [3980] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1600), 33, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_open, - anon_sym_module, - anon_sym_static, - anon_sym_to, - anon_sym_with, - anon_sym_package, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [4592] = 4, - ACTIONS(1533), 1, - anon_sym_DOT, + STATE(529), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 17, + ACTIONS(1549), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52902,16 +51033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1531), 23, + anon_sym_COLON, + ACTIONS(1547), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52925,21 +51048,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_AT, - [4644] = 3, + [4029] = 5, + ACTIONS(1339), 1, + anon_sym_LPAREN, + STATE(498), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1604), 17, + ACTIONS(1434), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -52948,16 +51077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1606), 24, + anon_sym_COLON, + ACTIONS(1432), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -52971,132 +51092,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_AT, - [4694] = 19, - ACTIONS(460), 1, - anon_sym_RPAREN, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(468), 1, - anon_sym_non_DASHsealed, - ACTIONS(1359), 1, - sym_identifier, - STATE(625), 1, - aux_sym_modifiers_repeat1, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(782), 1, - aux_sym_array_creation_expression_repeat1, - STATE(789), 1, - sym__unannotated_type, - STATE(827), 1, - sym_modifiers, - STATE(1200), 1, - sym_receiver_parameter, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(1109), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(692), 3, - sym__annotation, - sym_marker_annotation, - sym_annotation, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(462), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [4776] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1159), 11, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - sym_character_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1161), 30, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_octal_integer_literal, - sym_hex_floating_point_literal, - sym_true, - sym_false, - anon_sym_DQUOTE, - sym_null_literal, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_new, - anon_sym_switch, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_this, - sym_super, - sym_identifier, - [4826] = 3, + [4078] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1608), 17, + ACTIONS(1492), 12, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53106,15 +51118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_instanceof, + anon_sym_COLON, anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, sym_identifier, - ACTIONS(1610), 23, + ACTIONS(1494), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53131,18 +51138,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_SEMI, anon_sym_AT, - [4875] = 3, + [4123] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(540), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1612), 17, + ACTIONS(1553), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53151,16 +51163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1614), 23, + anon_sym_COLON, + ACTIONS(1551), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53174,21 +51178,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_AT, - [4924] = 3, + [4172] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(528), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1616), 17, + ACTIONS(1557), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53197,16 +51207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - ACTIONS(1618), 23, + anon_sym_COLON, + ACTIONS(1555), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53220,21 +51222,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_AT, - [4973] = 3, + [4221] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 17, + ACTIONS(1559), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53245,15 +51249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_instanceof, anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, sym_identifier, - ACTIONS(1531), 23, + ACTIONS(1561), 25, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -53274,24 +51273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - [5022] = 6, - ACTIONS(1620), 1, - sym_identifier, - STATE(608), 1, - sym__reserved_identifier, + [4266] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - ACTIONS(1624), 10, + ACTIONS(1565), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53300,9 +51293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_instanceof, - anon_sym_when, - ACTIONS(1622), 21, + anon_sym_COLON, + ACTIONS(1563), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53316,88 +51308,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - [5076] = 16, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(468), 1, - anon_sym_non_DASHsealed, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(1626), 1, - anon_sym_RPAREN, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(808), 1, - sym__unannotated_type, - STATE(827), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(1079), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(625), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(462), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [5150] = 6, - ACTIONS(1628), 1, - sym_identifier, - STATE(604), 1, - sym__reserved_identifier, + [4315] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - ACTIONS(1632), 10, + ACTIONS(1567), 12, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53407,8 +51334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_instanceof, + anon_sym_COLON, anon_sym_when, - ACTIONS(1630), 21, + sym_identifier, + ACTIONS(1569), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53425,16 +51354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_SEMI, - [5204] = 3, + anon_sym_AT, + [4360] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 17, + ACTIONS(1571), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53445,15 +51377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_instanceof, anon_sym_when, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, sym_identifier, - ACTIONS(1508), 21, + ACTIONS(1573), 25, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -53472,143 +51399,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_SEMI, - [5251] = 15, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(468), 1, - anon_sym_non_DASHsealed, - ACTIONS(1359), 1, - sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(808), 1, - sym__unannotated_type, - STATE(827), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(1211), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(625), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(462), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [5322] = 16, - ACTIONS(464), 1, anon_sym_AT, - ACTIONS(468), 1, - anon_sym_non_DASHsealed, - ACTIONS(1359), 1, - sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(816), 1, - sym__unannotated_type, - STATE(822), 1, - sym_modifiers, - STATE(889), 1, - sym_catch_type, - STATE(1376), 1, - sym_catch_formal_parameter, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(625), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(462), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [5395] = 11, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, + [4405] = 6, + ACTIONS(1514), 1, anon_sym_LT, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - ACTIONS(1337), 1, + ACTIONS(1517), 1, anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, + STATE(445), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1323), 8, + ACTIONS(1335), 10, anon_sym_AMP, anon_sym_GT, anon_sym_PLUS, @@ -53616,8 +51422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1319), 21, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1359), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53631,69 +51439,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_when, anon_sym_SEMI, - [5458] = 6, - ACTIONS(1636), 1, - anon_sym_LPAREN, - ACTIONS(1640), 1, - anon_sym_DOT, - STATE(549), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1638), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1634), 31, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, anon_sym_AT, - anon_sym_open, - anon_sym_module, - anon_sym_static, - anon_sym_package, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [5510] = 5, - ACTIONS(1646), 1, + [4456] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(533), 1, + STATE(491), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1644), 9, + ACTIONS(1577), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53703,7 +51467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1642), 25, + ACTIONS(1575), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53729,15 +51493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5559] = 5, - ACTIONS(1646), 1, + [4505] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(565), 1, + STATE(492), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1650), 9, + ACTIONS(1581), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53747,7 +51511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1648), 25, + ACTIONS(1579), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53773,15 +51537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5608] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(519), 1, - sym_class_body, + [4554] = 5, + ACTIONS(1339), 1, + anon_sym_LPAREN, + STATE(522), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1654), 9, + ACTIONS(1438), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53791,7 +51555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1652), 25, + ACTIONS(1436), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53817,25 +51581,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5657] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(544), 1, - sym_class_body, + [4603] = 6, + ACTIONS(1523), 1, + anon_sym_DOT, + ACTIONS(1583), 1, + anon_sym_LT, + STATE(465), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1658), 9, + ACTIONS(1519), 10, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1656), 25, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1521), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53849,27 +51616,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, - [5706] = 5, - ACTIONS(1646), 1, + anon_sym_AT, + [4654] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(514), 1, + STATE(530), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1662), 9, + ACTIONS(1588), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53879,7 +51644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1660), 25, + ACTIONS(1586), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53905,15 +51670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5755] = 5, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(543), 1, - sym_argument_list, + [4703] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(532), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1480), 9, + ACTIONS(1592), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53923,7 +51688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1478), 25, + ACTIONS(1590), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53949,15 +51714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5804] = 5, - ACTIONS(1646), 1, + [4752] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(545), 1, + STATE(533), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1666), 9, + ACTIONS(1596), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -53967,7 +51732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1664), 25, + ACTIONS(1594), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -53993,15 +51758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5853] = 5, - ACTIONS(1646), 1, + [4801] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(532), 1, + STATE(548), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1670), 9, + ACTIONS(1600), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54011,7 +51776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1668), 25, + ACTIONS(1598), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54037,15 +51802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [5902] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(562), 1, - sym_class_body, + [4850] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1674), 9, + ACTIONS(1602), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54054,9 +51815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1672), 25, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1604), 25, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -54069,27 +51833,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, - [5951] = 5, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(541), 1, - sym_argument_list, + anon_sym_AT, + [4895] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(502), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1484), 9, + ACTIONS(1608), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54099,7 +51862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1482), 25, + ACTIONS(1606), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54125,15 +51888,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6000] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(516), 1, - sym_class_body, + [4944] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1678), 9, + ACTIONS(687), 11, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(689), 24, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_octal_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + anon_sym_DQUOTE, + sym_null_literal, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_new, + anon_sym_switch, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_this, + sym_super, + sym_identifier, + [4988] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1612), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54143,7 +51943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1676), 25, + ACTIONS(1610), 26, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54169,15 +51969,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6049] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(515), 1, - sym_class_body, + anon_sym_AT, + [5032] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(1620), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1682), 9, + ACTIONS(1616), 2, + anon_sym_LT, + anon_sym_ATinterface, + STATE(480), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1618), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + ACTIONS(1614), 14, + anon_sym_class, + anon_sym_enum, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [5084] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1622), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54186,8 +52028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1680), 25, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1624), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54201,27 +52045,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, - [6098] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(531), 1, - sym_class_body, + anon_sym_AT, + [5128] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1686), 9, + ACTIONS(1626), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54230,8 +52069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1684), 25, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1628), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54245,29 +52086,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, - [6147] = 6, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1332), 1, - anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, + anon_sym_AT, + [5172] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1323), 9, + ACTIONS(1630), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54276,8 +52110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1319), 24, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1632), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54291,26 +52127,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, - [6198] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(534), 1, - sym_class_body, + anon_sym_AT, + [5216] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(901), 11, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(903), 24, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_octal_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + anon_sym_DQUOTE, + sym_null_literal, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_new, + anon_sym_switch, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_this, + sym_super, + sym_identifier, + [5260] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1690), 9, + ACTIONS(1636), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54320,7 +52193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1688), 25, + ACTIONS(1634), 26, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54344,13 +52217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_when, anon_sym_SEMI, - [6247] = 3, + [5304] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1694), 9, + ACTIONS(1638), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54359,8 +52233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1692), 26, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1640), 24, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54374,24 +52250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, anon_sym_AT, - [6291] = 3, + [5348] = 4, + ACTIONS(1523), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1698), 9, + ACTIONS(1519), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54400,8 +52276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1696), 26, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1521), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54415,106 +52293,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_when, - anon_sym_SEMI, - [6335] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1567), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1565), 23, - anon_sym_new, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_this, - sym_super, - sym_identifier, - [6379] = 3, + [5394] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1563), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1561), 23, - anon_sym_new, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_this, - sym_super, - sym_identifier, - [6423] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1702), 9, + ACTIONS(1644), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54524,7 +52317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1700), 26, + ACTIONS(1642), 26, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54551,56 +52344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_when, anon_sym_SEMI, - [6467] = 7, - ACTIONS(1711), 1, - anon_sym_AT, - ACTIONS(1714), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1706), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(505), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1708), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - ACTIONS(1704), 14, - anon_sym_class, - anon_sym_enum, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [6519] = 3, + [5438] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1719), 9, + ACTIONS(1648), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54610,7 +52358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1717), 26, + ACTIONS(1646), 26, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54634,55 +52382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_when, anon_sym_SEMI, - [6563] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1571), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1569), 23, - anon_sym_new, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_this, - sym_super, - sym_identifier, - [6607] = 3, + [5482] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1723), 9, + ACTIONS(1652), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54692,7 +52399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1721), 26, + ACTIONS(1650), 26, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54716,26 +52423,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_when, anon_sym_SEMI, + [5526] = 7, + ACTIONS(1661), 1, anon_sym_AT, - [6651] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(1731), 1, + ACTIONS(1664), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1727), 2, + ACTIONS(1656), 2, anon_sym_LT, anon_sym_ATinterface, - STATE(505), 4, + STATE(480), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1729), 13, + ACTIONS(1658), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -54749,7 +52456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - ACTIONS(1725), 14, + ACTIONS(1654), 14, anon_sym_class, anon_sym_enum, anon_sym_record, @@ -54764,51 +52471,54 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [6703] = 3, + [5578] = 6, + ACTIONS(1667), 1, + anon_sym_LBRACK, + ACTIONS(1669), 1, + anon_sym_DOT, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 3, + ACTIONS(444), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1733), 31, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_open, - anon_sym_module, - anon_sym_static, - anon_sym_package, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [6746] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(446), 22, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_SEMI, + [5627] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1739), 9, + ACTIONS(1675), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54818,7 +52528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1737), 25, + ACTIONS(1673), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54844,17 +52554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6789] = 6, - ACTIONS(1745), 1, - anon_sym_LBRACK, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, + [5670] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1743), 9, + ACTIONS(1679), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54864,7 +52568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1741), 22, + ACTIONS(1677), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54884,14 +52588,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6838] = 3, + [5713] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1753), 9, + ACTIONS(1683), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54901,7 +52608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1751), 25, + ACTIONS(1681), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54927,11 +52634,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6881] = 3, + [5756] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1757), 9, + ACTIONS(1687), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54941,7 +52648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1755), 25, + ACTIONS(1685), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -54967,11 +52674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6924] = 3, + [5799] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1761), 9, + ACTIONS(1691), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -54981,7 +52688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1759), 25, + ACTIONS(1689), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55007,11 +52714,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [6967] = 3, + [5842] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1695), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1693), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [5885] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1699), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1697), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [5928] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1765), 9, + ACTIONS(1703), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55021,7 +52808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1763), 25, + ACTIONS(1701), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55047,11 +52834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7010] = 3, + [5971] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1769), 9, + ACTIONS(1707), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55061,7 +52848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1767), 25, + ACTIONS(1705), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55087,11 +52874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7053] = 3, + [6014] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1773), 9, + ACTIONS(1711), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55101,7 +52888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1771), 25, + ACTIONS(1709), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55127,11 +52914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7096] = 3, + [6057] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1777), 9, + ACTIONS(1715), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55141,7 +52928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1775), 25, + ACTIONS(1713), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55167,11 +52954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7139] = 3, + [6100] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1781), 9, + ACTIONS(1717), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55180,8 +52967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1779), 25, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1719), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55195,23 +52984,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, - [7182] = 3, + anon_sym_AT, + [6143] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1785), 9, + ACTIONS(1723), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55221,7 +53008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1783), 25, + ACTIONS(1721), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55247,58 +53034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7225] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1789), 6, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1787), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [7268] = 3, + [6186] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1793), 6, + ACTIONS(1727), 6, anon_sym_RBRACE, anon_sym_LT, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1791), 28, + ACTIONS(1725), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -55327,18 +53074,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7311] = 3, + [6229] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1797), 6, + ACTIONS(1731), 6, anon_sym_RBRACE, anon_sym_LT, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1795), 28, + ACTIONS(1729), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -55367,11 +53114,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7354] = 3, + [6272] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1801), 9, + ACTIONS(1434), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55381,7 +53128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1799), 25, + ACTIONS(1432), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55407,11 +53154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7397] = 3, + [6315] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 9, + ACTIONS(1735), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55421,7 +53168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1803), 25, + ACTIONS(1733), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55447,11 +53194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7440] = 3, + [6358] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 9, + ACTIONS(1739), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55461,7 +53208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1807), 25, + ACTIONS(1737), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55487,11 +53234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7483] = 3, + [6401] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 9, + ACTIONS(1743), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55501,7 +53248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1811), 25, + ACTIONS(1741), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55527,11 +53274,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7526] = 3, + [6444] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1747), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1745), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [6487] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1817), 9, + ACTIONS(1751), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55541,7 +53328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1815), 25, + ACTIONS(1749), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55567,11 +53354,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7569] = 3, + [6530] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1755), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1753), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [6573] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1821), 9, + ACTIONS(1450), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55581,7 +53408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1819), 25, + ACTIONS(1448), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55607,11 +53434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7612] = 3, + [6616] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1825), 9, + ACTIONS(1757), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55620,8 +53447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1823), 25, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1759), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55635,23 +53464,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_AT, + [6659] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1761), 11, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1763), 23, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_AT, + [6702] = 11, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(1347), 1, + anon_sym_LT, + ACTIONS(1355), 1, anon_sym_DOT, + ACTIONS(1359), 1, + anon_sym_AT, + ACTIONS(1429), 1, + anon_sym_DASH_GT, + STATE(485), 1, + sym_argument_list, + STATE(764), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1352), 2, + anon_sym_LBRACK, anon_sym_COLON_COLON, + ACTIONS(1341), 8, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1337), 17, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_when, - anon_sym_SEMI, - [7655] = 3, + [6761] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1829), 9, + ACTIONS(1438), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55661,7 +53576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1827), 25, + ACTIONS(1436), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55687,11 +53602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7698] = 3, + [6804] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1833), 9, + ACTIONS(1519), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55700,8 +53615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1831), 25, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1521), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55715,23 +53632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, anon_sym_SEMI, - [7741] = 3, + anon_sym_AT, + [6847] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1837), 9, + ACTIONS(1341), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -55741,7 +53656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1835), 25, + ACTIONS(1337), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -55767,24 +53682,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [7784] = 3, + [6890] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1841), 6, - anon_sym_RBRACE, + ACTIONS(1767), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1839), 28, + ACTIONS(1765), 31, anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, + anon_sym_open, + anon_sym_module, anon_sym_static, + anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, @@ -55807,24 +53722,24 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7827] = 3, + [6933] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 6, - anon_sym_RBRACE, + ACTIONS(1771), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1843), 28, + ACTIONS(1769), 31, anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, + anon_sym_open, + anon_sym_module, anon_sym_static, + anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, @@ -55847,76 +53762,100 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7870] = 3, + [6976] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1849), 6, - anon_sym_RBRACE, + ACTIONS(1775), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1773), 25, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1847), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [7913] = 3, + [7019] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1853), 6, - anon_sym_RBRACE, + ACTIONS(1779), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1777), 25, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1851), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, + [7062] = 5, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1784), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1788), 3, + anon_sym_open, + anon_sym_module, + anon_sym_package, + ACTIONS(1781), 11, anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -55927,23 +53866,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7956] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1857), 6, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1855), 28, + ACTIONS(1786), 17, anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_enum, anon_sym_public, @@ -55957,25 +53884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sealed, anon_sym_record, anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [7999] = 3, + [7109] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1861), 3, + ACTIONS(1792), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1859), 31, + ACTIONS(1790), 31, anon_sym_final, anon_sym_class, anon_sym_default, @@ -56007,11 +53924,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8042] = 3, + [7152] = 6, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, + ACTIONS(1798), 1, + anon_sym_LBRACK, + ACTIONS(1800), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1865), 9, + ACTIONS(1796), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56021,7 +53944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1863), 25, + ACTIONS(1794), 22, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56041,17 +53964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8085] = 3, + [7201] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1869), 9, + ACTIONS(1804), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56061,7 +53981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1867), 25, + ACTIONS(1802), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56087,11 +54007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8128] = 3, + [7244] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1873), 9, + ACTIONS(1808), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56101,7 +54021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1871), 25, + ACTIONS(1806), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56127,11 +54047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8171] = 3, + [7287] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1877), 9, + ACTIONS(1812), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56141,7 +54061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1875), 25, + ACTIONS(1810), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56167,11 +54087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8214] = 3, + [7330] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 9, + ACTIONS(1816), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56181,7 +54101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1879), 25, + ACTIONS(1814), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56207,171 +54127,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8257] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1885), 6, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1883), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8300] = 3, + [7373] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 6, - anon_sym_RBRACE, + ACTIONS(1820), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1887), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8343] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1893), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1818), 25, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1891), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8386] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1897), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1895), 31, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_open, - anon_sym_module, - anon_sym_static, - anon_sym_package, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8429] = 3, + [7416] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1901), 9, + ACTIONS(1824), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56381,7 +54181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1899), 25, + ACTIONS(1822), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56407,11 +54207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8472] = 3, + [7459] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 9, + ACTIONS(1828), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56421,7 +54221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1903), 25, + ACTIONS(1826), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56447,51 +54247,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8515] = 3, + [7502] = 6, + ACTIONS(1667), 1, + anon_sym_LBRACK, + ACTIONS(1669), 1, + anon_sym_DOT, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1909), 6, - anon_sym_RBRACE, + ACTIONS(1832), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1830), 22, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1907), 28, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8558] = 3, + [7551] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1913), 9, + ACTIONS(1836), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56501,7 +54304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1911), 25, + ACTIONS(1834), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56527,11 +54330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8601] = 3, + [7594] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 9, + ACTIONS(1840), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56541,7 +54344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1915), 25, + ACTIONS(1838), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56567,11 +54370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8644] = 3, + [7637] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 9, + ACTIONS(1844), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56581,7 +54384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1919), 25, + ACTIONS(1842), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56607,11 +54410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8687] = 3, + [7680] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1925), 9, + ACTIONS(1848), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56621,7 +54424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1923), 25, + ACTIONS(1846), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56647,17 +54450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8730] = 6, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(1933), 1, - anon_sym_DOT, + [7723] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1929), 9, + ACTIONS(1852), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56667,7 +54464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1927), 22, + ACTIONS(1850), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56687,14 +54484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8779] = 3, + [7766] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1480), 9, + ACTIONS(1856), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56704,7 +54504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1478), 25, + ACTIONS(1854), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56730,11 +54530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8822] = 3, + [7809] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1512), 9, + ACTIONS(1860), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56744,7 +54544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1510), 25, + ACTIONS(1858), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56770,37 +54570,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8865] = 11, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1329), 1, - anon_sym_LT, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - ACTIONS(1371), 1, - anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, - sym_type_arguments, + [7852] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1323), 8, + ACTIONS(1864), 9, anon_sym_AMP, anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1319), 17, + ACTIONS(1862), 25, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -56813,16 +54599,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_when, - [8924] = 3, + anon_sym_SEMI, + [7895] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1868), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1866), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [7938] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1872), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1870), 31, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_open, + anon_sym_module, + anon_sym_static, + anon_sym_package, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [7981] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1876), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1874), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [8024] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1880), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1878), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [8067] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1884), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1882), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [8110] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1888), 6, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1886), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [8153] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1484), 9, + ACTIONS(1892), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56832,7 +54864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1482), 25, + ACTIONS(1890), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56858,11 +54890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [8967] = 3, + [8196] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1937), 9, + ACTIONS(1896), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56872,7 +54904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1935), 25, + ACTIONS(1894), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56898,11 +54930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9010] = 3, + [8239] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1941), 9, + ACTIONS(1900), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56912,7 +54944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1939), 25, + ACTIONS(1898), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56938,11 +54970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9053] = 3, + [8282] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1945), 9, + ACTIONS(1904), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56952,7 +54984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1943), 25, + ACTIONS(1902), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -56978,11 +55010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9096] = 3, + [8325] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1949), 9, + ACTIONS(1908), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -56992,7 +55024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1947), 25, + ACTIONS(1906), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57018,11 +55050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9139] = 3, + [8368] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1953), 9, + ACTIONS(1912), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57032,7 +55064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1951), 25, + ACTIONS(1910), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57058,11 +55090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9182] = 3, + [8411] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1957), 9, + ACTIONS(1916), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57072,7 +55104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1955), 25, + ACTIONS(1914), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57098,11 +55130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9225] = 3, + [8454] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1323), 9, + ACTIONS(1920), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57112,7 +55144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1319), 25, + ACTIONS(1918), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57138,11 +55170,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9268] = 3, + [8497] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1961), 9, + ACTIONS(1924), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57152,7 +55184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1959), 25, + ACTIONS(1922), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57178,11 +55210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9311] = 3, + [8540] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1965), 9, + ACTIONS(1928), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57192,7 +55224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1963), 25, + ACTIONS(1926), 25, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57218,24 +55250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_when, anon_sym_SEMI, - [9354] = 3, + [8583] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1969), 3, + ACTIONS(1932), 6, + anon_sym_RBRACE, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1967), 31, + ACTIONS(1930), 28, anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, - anon_sym_open, - anon_sym_module, anon_sym_static, - anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, @@ -57258,182 +55290,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9397] = 6, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(1933), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(482), 9, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(484), 22, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_when, - anon_sym_SEMI, - [9446] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1973), 9, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1971), 25, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [9489] = 5, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1235), 3, - anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1978), 3, - anon_sym_open, - anon_sym_module, - anon_sym_package, - ACTIONS(1975), 11, - anon_sym_AT, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - ACTIONS(1233), 17, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - [9536] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1982), 9, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1980), 25, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_SEMI, - [9579] = 3, + [8626] = 5, + ACTIONS(35), 1, + anon_sym_LBRACE, + STATE(487), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 5, - anon_sym_RBRACE, + ACTIONS(1784), 3, anon_sym_LT, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1984), 28, + ACTIONS(1786), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -57462,19 +55331,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9621] = 5, - ACTIONS(651), 1, - anon_sym_LPAREN, - STATE(1278), 1, - sym_parenthesized_expression, + [8672] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1235), 3, + ACTIONS(1936), 5, + anon_sym_RBRACE, anon_sym_LT, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1233), 28, + ACTIONS(1934), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -57503,17 +55370,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9667] = 3, + [8714] = 5, + ACTIONS(1181), 1, + anon_sym_LPAREN, + STATE(1247), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 5, - anon_sym_RBRACE, + ACTIONS(1784), 3, anon_sym_LT, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1988), 28, + ACTIONS(1786), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -57542,19 +55411,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9709] = 5, - ACTIONS(35), 1, - anon_sym_LBRACE, - STATE(522), 1, - sym_block, + [8760] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1235), 3, + ACTIONS(1940), 5, + anon_sym_RBRACE, anon_sym_LT, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1233), 28, + ACTIONS(1938), 28, anon_sym_final, anon_sym_class, anon_sym_default, @@ -57583,59 +55450,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [9755] = 7, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(582), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1498), 10, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - ACTIONS(1496), 15, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - [9804] = 6, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1371), 1, - anon_sym_DASH_GT, - STATE(569), 1, - sym_argument_list, + [8802] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1323), 9, + ACTIONS(1502), 11, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57644,8 +55463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1319), 20, + anon_sym_instanceof, + anon_sym_when, + sym_identifier, + ACTIONS(1504), 21, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -57657,117 +55480,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_when, - [9851] = 7, - ACTIONS(1493), 1, - anon_sym_AT, - ACTIONS(1994), 1, - anon_sym_LBRACK, - STATE(582), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1488), 10, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - ACTIONS(1486), 15, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, + [8843] = 4, + ACTIONS(1942), 1, sym_identifier, - [9900] = 17, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1997), 1, - sym_identifier, - ACTIONS(1999), 1, - anon_sym_final, - STATE(435), 1, - sym__unannotated_type, - STATE(447), 1, - sym_generic_type, - STATE(461), 1, - sym_scoped_type_identifier, - STATE(477), 1, - sym__type, - STATE(480), 1, - sym_annotated_type, - STATE(589), 1, - sym_record_pattern, - STATE(1205), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2003), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2005), 2, - sym_boolean_type, - sym_void_type, - STATE(476), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(784), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2001), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [9969] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2009), 8, + ACTIONS(1946), 10, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57776,7 +55503,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2007), 21, + anon_sym_instanceof, + anon_sym_when, + ACTIONS(1944), 21, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57790,19 +55519,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, - anon_sym_when, anon_sym_SEMI, - [10011] = 3, + [8886] = 4, + ACTIONS(1948), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(482), 8, + ACTIONS(1952), 10, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57811,7 +55542,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(484), 23, + anon_sym_instanceof, + anon_sym_when, + ACTIONS(1950), 21, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57825,7 +55558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, @@ -57833,13 +55565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_RBRACK, - anon_sym_when, anon_sym_SEMI, - [10051] = 3, + [8929] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2015), 8, + ACTIONS(1956), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57848,7 +55579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2013), 23, + ACTIONS(1954), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57872,98 +55603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10091] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2019), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(2017), 27, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10131] = 16, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1997), 1, - sym_identifier, - STATE(435), 1, - sym__unannotated_type, - STATE(447), 1, - sym_generic_type, - STATE(461), 1, - sym_scoped_type_identifier, - STATE(479), 1, - sym__type, - STATE(480), 1, - sym_annotated_type, - STATE(603), 1, - sym_record_pattern, - STATE(1205), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2003), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2005), 2, - sym_boolean_type, - sym_void_type, - STATE(476), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(784), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2001), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [10197] = 3, + [8969] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2023), 8, + ACTIONS(1796), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -57972,7 +55616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2021), 23, + ACTIONS(1794), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -57996,11 +55640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10237] = 3, + [9009] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2027), 8, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1960), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58009,7 +55656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2025), 23, + ACTIONS(1958), 21, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58026,208 +55673,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_when, - anon_sym_SEMI, - [10277] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2031), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(2029), 27, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10317] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2035), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(2033), 27, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10357] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2039), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(2037), 27, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10397] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2043), 4, - anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(2041), 27, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10437] = 3, + [9051] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2047), 4, + ACTIONS(1966), 8, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1964), 23, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_when, anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(2045), 27, - anon_sym_final, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10477] = 3, + [9091] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2051), 4, + ACTIONS(1970), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(2049), 27, + ACTIONS(1968), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -58255,16 +55752,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10517] = 3, + [9131] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 4, + ACTIONS(1974), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(2053), 27, + ACTIONS(1972), 27, anon_sym_final, anon_sym_class, anon_sym_default, @@ -58292,11 +55789,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10557] = 3, + [9171] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2059), 8, + ACTIONS(1978), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58305,7 +55802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2057), 23, + ACTIONS(1976), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58329,14 +55826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10597] = 4, + [9211] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1929), 8, + ACTIONS(1982), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58345,7 +55839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1927), 21, + ACTIONS(1980), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58364,14 +55858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10639] = 3, + [9251] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1929), 8, + ACTIONS(1986), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58380,7 +55876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1927), 23, + ACTIONS(1984), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58404,11 +55900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10679] = 3, + [9291] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2015), 8, + ACTIONS(1990), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58417,7 +55913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2013), 23, + ACTIONS(1988), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58441,11 +55937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10719] = 3, + [9331] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1743), 8, + ACTIONS(1994), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58454,7 +55950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1741), 23, + ACTIONS(1992), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58478,11 +55974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10759] = 3, + [9371] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2063), 8, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1832), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58491,7 +55990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2061), 23, + ACTIONS(1830), 21, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58510,16 +56009,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10799] = 3, + [9413] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1998), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1996), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [9453] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2002), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(2000), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [9493] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2067), 8, + ACTIONS(2006), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58528,7 +56099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2065), 23, + ACTIONS(2004), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58552,11 +56123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10839] = 3, + [9533] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2071), 8, + ACTIONS(1832), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58565,7 +56136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2069), 23, + ACTIONS(1830), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58589,11 +56160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10879] = 3, + [9573] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2075), 8, + ACTIONS(2010), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58602,7 +56173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2073), 23, + ACTIONS(2008), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58626,11 +56197,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10919] = 3, + [9613] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2014), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(2012), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [9653] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 8, + ACTIONS(2018), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58639,7 +56247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2077), 23, + ACTIONS(2016), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58663,11 +56271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10959] = 3, + [9693] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 8, + ACTIONS(444), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58676,7 +56284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2081), 23, + ACTIONS(446), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58700,11 +56308,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [10999] = 3, + [9733] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2022), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(2020), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [9773] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2026), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(2024), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [9813] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2087), 8, + ACTIONS(1994), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -58713,7 +56395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2085), 23, + ACTIONS(1992), 23, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -58737,146 +56419,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11039] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, + [9853] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2030), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(2028), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [9893] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2034), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(2032), 23, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2113), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2089), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11108] = 15, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2107), 1, + [9933] = 12, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1960), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 10, + ACTIONS(1958), 13, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11171] = 15, - ACTIONS(2009), 1, - anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2107), 1, + [9990] = 16, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 10, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1958), 9, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COMMA, anon_sym_QMARK, @@ -58884,131 +56587,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11234] = 5, - ACTIONS(2124), 1, - anon_sym_COLON, + [10055] = 6, + ACTIONS(2044), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 2, - anon_sym_DASH_GT, - anon_sym_when, - ACTIONS(1702), 8, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1960), 7, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1700), 19, + ACTIONS(1958), 18, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_SEMI, + [10100] = 13, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1960), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [11277] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1958), 11, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_AMP_AMP, - ACTIONS(2101), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, anon_sym_CARET, - ACTIONS(2115), 1, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_SEMI, + [10159] = 15, + ACTIONS(1960), 1, + anon_sym_PIPE, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2060), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2127), 7, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1958), 10, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11346] = 14, - ACTIONS(2009), 1, + [10222] = 14, + ACTIONS(1960), 1, anon_sym_PIPE, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2107), 1, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 11, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1958), 11, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_AMP_AMP, @@ -59020,28 +56767,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11407] = 7, - ACTIONS(2107), 1, + [10283] = 9, + ACTIONS(2044), 1, anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2009), 5, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1960), 4, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(2007), 18, + ACTIONS(1958), 16, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -59051,8 +56802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, @@ -59060,99 +56809,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11454] = 16, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, + [10334] = 5, + ACTIONS(2065), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2062), 2, + anon_sym_DASH_GT, + anon_sym_when, + ACTIONS(1644), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1642), 19, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2113), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 9, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_when, - anon_sym_SEMI, - [11519] = 18, - ACTIONS(2091), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [10377] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2085), 7, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2068), 7, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, @@ -59160,160 +56898,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11588] = 13, - ACTIONS(2107), 1, + [10446] = 18, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2009), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 11, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2074), 7, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11647] = 9, - ACTIONS(2107), 1, + [10515] = 18, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2009), 4, - anon_sym_AMP, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - ACTIONS(2007), 16, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_instanceof, + ACTIONS(2032), 7, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11698] = 12, - ACTIONS(2107), 1, + [10584] = 15, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2009), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 13, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2054), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1958), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11755] = 6, - ACTIONS(2107), 1, + [10647] = 7, + ACTIONS(2044), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2105), 2, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2009), 7, + ACTIONS(1960), 5, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(2007), 18, + ACTIONS(1958), 18, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_GT_EQ, @@ -59332,21 +57088,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_when, anon_sym_SEMI, - [11800] = 6, - ACTIONS(2129), 1, - anon_sym_LPAREN, - ACTIONS(2131), 1, - anon_sym_DOT, - STATE(663), 1, - sym_annotation_argument_list, + [10694] = 22, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2076), 1, + anon_sym_AMP, + ACTIONS(2084), 1, + anon_sym_AMP_AMP, + ACTIONS(2086), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2092), 1, + anon_sym_SLASH, + ACTIONS(2094), 1, + anon_sym_PIPE, + ACTIONS(2096), 1, + anon_sym_CARET, + ACTIONS(2100), 1, + anon_sym_GT_GT, + ACTIONS(2104), 1, + anon_sym_COMMA, + ACTIONS(2106), 1, + anon_sym_QMARK, + ACTIONS(2108), 1, + anon_sym_when, + STATE(885), 1, + aux_sym_argument_list_repeat1, + STATE(1177), 1, + sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1638), 3, - anon_sym_LBRACK, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2078), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2080), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2082), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2090), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2098), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2102), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [10770] = 6, + ACTIONS(2113), 1, anon_sym_AT, + ACTIONS(2116), 1, anon_sym_non_DASHsealed, - ACTIONS(1634), 23, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(597), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1654), 10, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + ACTIONS(2110), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -59360,25 +57180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [11844] = 5, - ACTIONS(1321), 1, + [10814] = 5, + ACTIONS(1339), 1, anon_sym_LPAREN, - STATE(1351), 1, + STATE(1289), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1323), 8, + ACTIONS(1341), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -59387,7 +57197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1319), 19, + ACTIONS(1337), 19, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -59407,20 +57217,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_SEMI, - [11886] = 6, - ACTIONS(464), 1, + [10856] = 6, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(2135), 1, + ACTIONS(2121), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(627), 4, + STATE(597), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1725), 10, + ACTIONS(1614), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -59431,7 +57241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(2133), 13, + ACTIONS(2119), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -59445,74 +57255,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [11930] = 22, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2137), 1, + [10900] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1573), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_AMP, - ACTIONS(2145), 1, - anon_sym_AMP_AMP, - ACTIONS(2147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, - anon_sym_SLASH, - ACTIONS(2155), 1, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2157), 1, - anon_sym_CARET, - ACTIONS(2161), 1, - anon_sym_GT_GT, - ACTIONS(2165), 1, anon_sym_COMMA, - ACTIONS(2167), 1, - anon_sym_QMARK, - ACTIONS(2169), 1, - anon_sym_when, - STATE(946), 1, - aux_sym_argument_list_repeat1, - STATE(1273), 1, - sym_guard, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1571), 17, + anon_sym_new, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_this, + sym_super, + sym_identifier, + [10938] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(1535), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, anon_sym_GT, - anon_sym_LT, - ACTIONS(2141), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2143), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2163), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [12006] = 6, - ACTIONS(2174), 1, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(2177), 1, - anon_sym_non_DASHsealed, + anon_sym_DOT_DOT_DOT, + ACTIONS(1533), 17, + anon_sym_new, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_this, + sym_super, + sym_identifier, + [10976] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(627), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1704), 10, + ACTIONS(1561), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1559), 17, + anon_sym_new, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -59522,32 +57357,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, + sym_this, + sym_super, sym_identifier, - ACTIONS(2171), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [12050] = 3, + [11014] = 6, + ACTIONS(2123), 1, + anon_sym_LPAREN, + ACTIONS(2125), 1, + anon_sym_DOT, + STATE(629), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1602), 5, - anon_sym_LPAREN, + ACTIONS(1529), 3, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1600), 23, + ACTIONS(1525), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -59571,14 +57398,14 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [12087] = 4, + [11058] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 2, + ACTIONS(2062), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1702), 8, + ACTIONS(1644), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -59587,7 +57414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1700), 18, + ACTIONS(1642), 18, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -59606,489 +57433,517 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [12126] = 22, - ACTIONS(2091), 1, + [11097] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1474), 5, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1472), 23, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [11134] = 22, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2163), 1, + ACTIONS(2102), 1, anon_sym_COLON, - ACTIONS(2180), 1, + ACTIONS(2127), 1, anon_sym_COMMA, - ACTIONS(2182), 1, + ACTIONS(2129), 1, anon_sym_when, - STATE(982), 1, + STATE(933), 1, aux_sym_argument_list_repeat1, - STATE(1273), 1, + STATE(1177), 1, sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [12201] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [11209] = 18, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2076), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2084), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2086), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2094), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2096), 1, anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2100), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2106), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2082), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2184), 4, - anon_sym_RPAREN, + ACTIONS(2131), 4, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, anon_sym_when, - [12267] = 18, - ACTIONS(2117), 1, + [11275] = 18, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2137), 1, + ACTIONS(2076), 1, anon_sym_AMP, - ACTIONS(2145), 1, + ACTIONS(2084), 1, anon_sym_AMP_AMP, - ACTIONS(2147), 1, + ACTIONS(2086), 1, anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2155), 1, + ACTIONS(2094), 1, anon_sym_PIPE, - ACTIONS(2157), 1, + ACTIONS(2096), 1, anon_sym_CARET, - ACTIONS(2161), 1, + ACTIONS(2100), 1, anon_sym_GT_GT, - ACTIONS(2167), 1, + ACTIONS(2106), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2082), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2184), 4, + ACTIONS(2068), 4, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_COLON, anon_sym_when, - [12333] = 18, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2137), 1, - anon_sym_AMP, - ACTIONS(2145), 1, - anon_sym_AMP_AMP, - ACTIONS(2147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, + [11341] = 9, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2155), 1, - anon_sym_PIPE, - ACTIONS(2157), 1, - anon_sym_CARET, - ACTIONS(2161), 1, + ACTIONS(2100), 1, anon_sym_GT_GT, - ACTIONS(2167), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2141), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2143), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2127), 4, + ACTIONS(1960), 4, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + ACTIONS(1958), 13, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12399] = 18, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2137), 1, + [11389] = 6, + ACTIONS(1667), 1, + anon_sym_LBRACK, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(444), 8, anon_sym_AMP, - ACTIONS(2145), 1, - anon_sym_AMP_AMP, - ACTIONS(2147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2155), 1, anon_sym_PIPE, - ACTIONS(2157), 1, - anon_sym_CARET, - ACTIONS(2161), 1, anon_sym_GT_GT, - ACTIONS(2167), 1, + ACTIONS(446), 16, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + [11431] = 12, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2092), 1, + anon_sym_SLASH, + ACTIONS(2100), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1960), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2089), 4, + ACTIONS(1958), 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12465] = 18, - ACTIONS(2117), 1, + [11485] = 15, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2137), 1, + ACTIONS(2076), 1, anon_sym_AMP, - ACTIONS(2145), 1, - anon_sym_AMP_AMP, - ACTIONS(2147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2155), 1, + ACTIONS(2094), 1, anon_sym_PIPE, - ACTIONS(2157), 1, + ACTIONS(2096), 1, anon_sym_CARET, - ACTIONS(2161), 1, + ACTIONS(2100), 1, anon_sym_GT_GT, - ACTIONS(2167), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2082), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2085), 4, + ACTIONS(1958), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12531] = 6, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2186), 1, - anon_sym_DOT, + [11545] = 7, + ACTIONS(2092), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(482), 8, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2090), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1960), 5, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(484), 16, + ACTIONS(1958), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_when, + [11589] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - [12573] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1488), 12, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_EQ, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, anon_sym_GT, - anon_sym_PIPE, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2131), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1486), 15, anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - [12609] = 13, - ACTIONS(2117), 1, + anon_sym_when, + [11655] = 15, + ACTIONS(1960), 1, + anon_sym_PIPE, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2153), 1, + ACTIONS(2076), 1, + anon_sym_AMP, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2161), 1, + ACTIONS(2096), 1, + anon_sym_CARET, + ACTIONS(2100), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2009), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2082), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 8, + ACTIONS(1958), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12665] = 14, - ACTIONS(518), 1, - sym_underscore_pattern, - ACTIONS(2188), 1, - sym_identifier, - ACTIONS(2190), 1, - anon_sym_RPAREN, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(830), 1, - sym__unannotated_type, - STATE(871), 1, - sym_generic_type, - STATE(1205), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(1154), 2, - sym_record_pattern, - sym_record_pattern_component, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [12723] = 12, - ACTIONS(2117), 1, + [11715] = 14, + ACTIONS(1960), 1, + anon_sym_PIPE, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2153), 1, + ACTIONS(2076), 1, + anon_sym_AMP, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2161), 1, + ACTIONS(2100), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2009), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2149), 2, + ACTIONS(2082), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 10, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1958), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -60097,110 +57952,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12777] = 15, - ACTIONS(2117), 1, + [11773] = 13, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2137), 1, - anon_sym_AMP, - ACTIONS(2153), 1, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2155), 1, - anon_sym_PIPE, - ACTIONS(2157), 1, - anon_sym_CARET, - ACTIONS(2161), 1, + ACTIONS(2100), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1960), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2082), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 7, + ACTIONS(1958), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_when, - [12837] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1559), 12, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1557), 15, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - anon_sym_throws, - sym_this, - sym_identifier, - [12873] = 9, - ACTIONS(2153), 1, + anon_sym_COLON, + anon_sym_when, + [11829] = 6, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2161), 1, - anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2009), 4, + ACTIONS(1960), 7, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2007), 13, + anon_sym_GT_GT, + ACTIONS(1958), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -60208,973 +58023,1240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12921] = 16, - ACTIONS(2117), 1, + [11871] = 18, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2137), 1, + ACTIONS(2076), 1, anon_sym_AMP, - ACTIONS(2145), 1, + ACTIONS(2084), 1, anon_sym_AMP_AMP, - ACTIONS(2153), 1, + ACTIONS(2086), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2155), 1, + ACTIONS(2094), 1, anon_sym_PIPE, - ACTIONS(2157), 1, + ACTIONS(2096), 1, anon_sym_CARET, - ACTIONS(2161), 1, + ACTIONS(2100), 1, anon_sym_GT_GT, + ACTIONS(2106), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2082), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 6, - anon_sym_PIPE_PIPE, + ACTIONS(2032), 4, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [12983] = 18, - ACTIONS(2091), 1, + [11937] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2192), 4, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2135), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_SEMI, - [13049] = 6, - ACTIONS(2153), 1, + [12003] = 16, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2076), 1, + anon_sym_AMP, + ACTIONS(2084), 1, + anon_sym_AMP_AMP, + ACTIONS(2092), 1, anon_sym_SLASH, + ACTIONS(2094), 1, + anon_sym_PIPE, + ACTIONS(2096), 1, + anon_sym_CARET, + ACTIONS(2100), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2151), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2009), 7, - anon_sym_AMP, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(2007), 15, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2082), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2090), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, + ACTIONS(1958), 6, + anon_sym_PIPE_PIPE, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [13091] = 15, - ACTIONS(2009), 1, - anon_sym_PIPE, - ACTIONS(2117), 1, + [12065] = 18, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2137), 1, + ACTIONS(2076), 1, anon_sym_AMP, - ACTIONS(2153), 1, + ACTIONS(2084), 1, + anon_sym_AMP_AMP, + ACTIONS(2086), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2157), 1, + ACTIONS(2094), 1, + anon_sym_PIPE, + ACTIONS(2096), 1, anon_sym_CARET, - ACTIONS(2161), 1, + ACTIONS(2100), 1, anon_sym_GT_GT, + ACTIONS(2106), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, + ACTIONS(2082), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2074), 4, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_when, - [13151] = 14, - ACTIONS(2009), 1, - anon_sym_PIPE, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2137), 1, - anon_sym_AMP, - ACTIONS(2153), 1, + [12131] = 20, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2161), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, + ACTIONS(2137), 1, + anon_sym_RPAREN, + ACTIONS(2139), 1, + anon_sym_COMMA, + STATE(1103), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2007), 8, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12200] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1792), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1790), 23, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [12235] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, anon_sym_CARET, - anon_sym_DASH_GT, - anon_sym_COMMA, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - anon_sym_COLON, - anon_sym_when, - [13209] = 7, - ACTIONS(2153), 1, - anon_sym_SLASH, + ACTIONS(2141), 1, + anon_sym_COMMA, + ACTIONS(2143), 1, + anon_sym_SEMI, + STATE(1035), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2149), 2, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2009), 5, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12304] = 7, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + STATE(631), 1, + aux_sym_dimensions_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1476), 9, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1478), 10, + anon_sym_RPAREN, anon_sym_AMP, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + [12347] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2007), 15, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2050), 1, anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_when, - [13253] = 20, - ACTIONS(2091), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2194), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2196), 1, - anon_sym_SEMI, - STATE(1169), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2147), 1, + anon_sym_RPAREN, + STATE(1122), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13322] = 13, - ACTIONS(518), 1, - sym_underscore_pattern, - ACTIONS(2188), 1, - sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(830), 1, - sym__unannotated_type, - STATE(871), 1, - sym_generic_type, - STATE(1205), 1, - sym__reserved_identifier, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12416] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(1767), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1765), 23, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, sym_boolean_type, sym_void_type, - STATE(1292), 2, - sym_record_pattern, - sym_record_pattern_component, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, + sym_identifier, + [12451] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1771), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1769), 23, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [13377] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2194), 1, - anon_sym_COMMA, - ACTIONS(2198), 1, - anon_sym_SEMI, - STATE(1128), 1, - aux_sym_for_statement_repeat1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [12486] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(442), 2, + anon_sym_while, + anon_sym_else, + ACTIONS(444), 8, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(446), 16, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_STAR, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2113), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13446] = 18, - ACTIONS(2091), 1, + anon_sym_instanceof, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + [12523] = 7, + ACTIONS(1499), 1, + anon_sym_AT, + ACTIONS(2149), 1, + anon_sym_LBRACK, + STATE(631), 1, + aux_sym_dimensions_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1492), 9, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1494), 10, + anon_sym_RPAREN, anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + anon_sym_EQ, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + [12566] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2200), 3, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2152), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_SEMI, - [13511] = 15, - ACTIONS(424), 1, + [12631] = 15, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(2202), 1, + ACTIONS(2154), 1, anon_sym_GT, - ACTIONS(2204), 1, + ACTIONS(2156), 1, anon_sym_QMARK, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(834), 1, + STATE(773), 1, sym__unannotated_type, - STATE(906), 1, + STATE(858), 1, sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(1099), 2, + STATE(1054), 2, sym_wildcard, sym__type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(768), 4, + STATE(727), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13570] = 20, - ACTIONS(2091), 1, + [12690] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, + ACTIONS(2127), 1, + anon_sym_COMMA, + ACTIONS(2158), 1, + anon_sym_RPAREN, + STATE(1026), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12759] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2206), 1, - anon_sym_RPAREN, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - STATE(1083), 1, + ACTIONS(2160), 1, + anon_sym_RPAREN, + STATE(1034), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + [12828] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, + ACTIONS(2139), 1, + anon_sym_COMMA, + ACTIONS(2162), 1, + anon_sym_RPAREN, + STATE(1036), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13639] = 12, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(468), 1, - anon_sym_non_DASHsealed, - ACTIONS(2210), 1, - sym_identifier, - ACTIONS(2212), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12897] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, + ACTIONS(2164), 1, anon_sym_RBRACE, - ACTIONS(2214), 1, + ACTIONS(2166), 1, anon_sym_COMMA, - ACTIONS(2216), 1, - anon_sym_SEMI, - STATE(1005), 1, - sym_enum_constant, - STATE(1355), 1, - sym_enum_body_declarations, - STATE(1358), 1, - sym_modifiers, + STATE(1032), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(625), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(462), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [13692] = 20, - ACTIONS(2091), 1, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [12966] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2218), 1, + ACTIONS(2168), 1, anon_sym_RPAREN, - STATE(1086), 1, + STATE(1091), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13761] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13035] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, + ACTIONS(2141), 1, + anon_sym_COMMA, + ACTIONS(2170), 1, + anon_sym_SEMI, + STATE(1125), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13104] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2180), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2220), 1, + ACTIONS(2172), 1, anon_sym_RPAREN, - STATE(1126), 1, - aux_sym_argument_list_repeat1, + STATE(1094), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13830] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13173] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2222), 1, + ACTIONS(2174), 1, anon_sym_RPAREN, - STATE(1105), 1, + STATE(1095), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13899] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13242] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2224), 1, + ACTIONS(2176), 1, anon_sym_RPAREN, - STATE(1113), 1, + STATE(1096), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [13968] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13311] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2226), 1, + ACTIONS(2178), 1, anon_sym_RPAREN, - STATE(1175), 1, + STATE(1100), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14037] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13380] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2228), 1, - anon_sym_RBRACE, - ACTIONS(2230), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - STATE(1073), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(2180), 1, + anon_sym_RPAREN, + STATE(1101), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14106] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1897), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1895), 23, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [14141] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13449] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2194), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2232), 1, - anon_sym_SEMI, - STATE(1063), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2182), 1, + anon_sym_RPAREN, + STATE(1102), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14210] = 3, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13518] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 3, + ACTIONS(1872), 3, anon_sym_LBRACK, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1733), 23, + ACTIONS(1870), 23, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -61198,15 +59280,34 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14245] = 3, + [13553] = 12, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(436), 1, + anon_sym_non_DASHsealed, + ACTIONS(2184), 1, + sym_identifier, + ACTIONS(2186), 1, + anon_sym_RBRACE, + ACTIONS(2188), 1, + anon_sym_COMMA, + ACTIONS(2190), 1, + anon_sym_SEMI, + STATE(941), 1, + sym_enum_constant, + STATE(1294), 1, + sym_enum_body_declarations, + STATE(1342), 1, + sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1861), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1859), 23, + STATE(599), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(432), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -61220,1287 +59321,1078 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [14280] = 4, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(480), 2, - anon_sym_while, - anon_sym_else, - ACTIONS(482), 8, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, + [13606] = 20, + ACTIONS(2044), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(484), 16, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, + ACTIONS(2050), 1, anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - [14317] = 15, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2204), 1, - anon_sym_QMARK, - ACTIONS(2234), 1, - anon_sym_GT, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(834), 1, - sym__unannotated_type, - STATE(906), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(1095), 2, - sym_wildcard, - sym__type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(768), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [14376] = 20, - ACTIONS(2091), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2236), 1, + ACTIONS(2192), 1, anon_sym_RPAREN, - STATE(1076), 1, + STATE(1107), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14445] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13675] = 20, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2238), 1, - anon_sym_RPAREN, - STATE(1084), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [14514] = 20, - ACTIONS(2091), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2240), 1, + ACTIONS(2194), 1, anon_sym_RPAREN, - STATE(1110), 1, + STATE(1018), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14583] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13744] = 20, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2242), 1, - anon_sym_RPAREN, - STATE(1136), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [14652] = 20, - ACTIONS(2091), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2244), 1, + ACTIONS(2196), 1, anon_sym_RPAREN, - STATE(1140), 1, + STATE(1109), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14721] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13813] = 20, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2246), 1, - anon_sym_RPAREN, - STATE(1142), 1, - aux_sym_for_statement_repeat2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [14790] = 20, - ACTIONS(2091), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2248), 1, + ACTIONS(2198), 1, anon_sym_RPAREN, - STATE(1143), 1, + STATE(1110), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14859] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13882] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2250), 1, + ACTIONS(2200), 1, anon_sym_RPAREN, - STATE(1146), 1, + STATE(1111), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [14928] = 20, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [13951] = 15, + ACTIONS(491), 1, + anon_sym_AT, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(2156), 1, anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2252), 1, - anon_sym_RPAREN, - STATE(1147), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2202), 1, + anon_sym_GT, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(773), 1, + sym__unannotated_type, + STATE(858), 1, + sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [14997] = 20, - ACTIONS(2091), 1, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(1046), 2, + sym_wildcard, + sym__type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(727), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14010] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2254), 1, + ACTIONS(2204), 1, anon_sym_RPAREN, - STATE(1148), 1, + STATE(1113), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15066] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14079] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2256), 1, + ACTIONS(2206), 1, anon_sym_RPAREN, - STATE(1149), 1, + STATE(1114), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15135] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14148] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2258), 1, + ACTIONS(2208), 1, anon_sym_RPAREN, - STATE(1152), 1, + STATE(1115), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15204] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14217] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2260), 1, + ACTIONS(2210), 1, anon_sym_RPAREN, - STATE(1155), 1, + STATE(1116), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15273] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14286] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2262), 1, + ACTIONS(2212), 1, anon_sym_RPAREN, - STATE(1156), 1, + STATE(1083), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15342] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14355] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2264), 1, + ACTIONS(2214), 1, anon_sym_RPAREN, - STATE(1157), 1, + STATE(1085), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + anon_sym_LT_EQ, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15411] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14424] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2266), 1, + ACTIONS(2216), 1, anon_sym_RPAREN, - STATE(1159), 1, + STATE(1108), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15480] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14493] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2141), 1, anon_sym_COMMA, - ACTIONS(2268), 1, - anon_sym_RPAREN, - STATE(1160), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2218), 1, + anon_sym_SEMI, + STATE(1123), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15549] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14562] = 20, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(2270), 1, + ACTIONS(2220), 1, anon_sym_RPAREN, - STATE(1161), 1, + STATE(1067), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15618] = 20, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [14631] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2272), 1, - anon_sym_RPAREN, - STATE(1162), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [15687] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1969), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1967), 23, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [15722] = 18, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2222), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [14695] = 18, ACTIONS(19), 1, anon_sym_LT, - ACTIONS(2274), 1, + ACTIONS(2224), 1, sym_identifier, - ACTIONS(2276), 1, + ACTIONS(2226), 1, anon_sym_class, - ACTIONS(2278), 1, + ACTIONS(2228), 1, anon_sym_enum, - ACTIONS(2280), 1, + ACTIONS(2230), 1, anon_sym_record, - ACTIONS(2282), 1, + ACTIONS(2232), 1, anon_sym_ATinterface, - ACTIONS(2284), 1, + ACTIONS(2234), 1, anon_sym_interface, - STATE(695), 1, - sym_scoped_type_identifier, + STATE(731), 1, + sym_type_parameters, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(772), 1, + STATE(797), 1, sym__unannotated_type, - STATE(774), 1, - sym_type_parameters, - STATE(1051), 1, + STATE(981), 1, sym__constructor_declarator, - STATE(1097), 1, + STATE(1121), 1, sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14759] = 14, + ACTIONS(491), 1, + anon_sym_AT, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(2156), 1, + anon_sym_QMARK, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(773), 1, + sym__unannotated_type, + STATE(858), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(1255), 2, + sym_wildcard, + sym__type, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(87), 5, + STATE(727), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15786] = 18, - ACTIONS(2117), 1, + [14815] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2137), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2145), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2153), 1, - anon_sym_SLASH, - ACTIONS(2155), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2157), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2161), 1, - anon_sym_GT_GT, - ACTIONS(2167), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2139), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2141), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2143), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2149), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2151), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2159), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2286), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [15850] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2236), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [14879] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2192), 2, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2135), 2, anon_sym_RPAREN, anon_sym_COMMA, - [15914] = 5, - ACTIONS(1235), 1, - anon_sym_non_DASHsealed, - ACTIONS(2288), 1, + [14943] = 19, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, + ACTIONS(2238), 1, + anon_sym_COLON, + ACTIONS(2240), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15009] = 15, + ACTIONS(491), 1, anon_sym_AT, + ACTIONS(2242), 1, + sym_identifier, + ACTIONS(2244), 1, + anon_sym_final, + STATE(435), 1, + sym__unannotated_type, + STATE(442), 1, + sym_generic_type, + STATE(460), 1, + sym_scoped_type_identifier, + STATE(555), 1, + sym_annotated_type, + STATE(556), 1, + sym__type, + STATE(558), 1, + sym_record_pattern, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1975), 10, + ACTIONS(2248), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2250), 2, + sym_boolean_type, + sym_void_type, + STATE(509), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(735), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2246), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - ACTIONS(1233), 13, - anon_sym_final, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [15952] = 6, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2291), 1, - anon_sym_DOT, - STATE(735), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 11, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1341), 11, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [15992] = 11, - ACTIONS(464), 1, + [15067] = 11, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(468), 1, + ACTIONS(436), 1, anon_sym_non_DASHsealed, - ACTIONS(2210), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2216), 1, + ACTIONS(2190), 1, anon_sym_SEMI, - ACTIONS(2293), 1, + ACTIONS(2252), 1, anon_sym_RBRACE, - STATE(1144), 1, + STATE(1029), 1, sym_enum_constant, - STATE(1309), 1, + STATE(1323), 1, sym_enum_body_declarations, - STATE(1358), 1, + STATE(1342), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(625), 4, + STATE(599), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(462), 13, + ACTIONS(432), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -62514,506 +60406,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [16042] = 6, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2295), 1, - anon_sym_DOT, - STATE(715), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1529), 11, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1531), 11, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16082] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1596), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1598), 13, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16116] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1604), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1606), 13, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16150] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + [15117] = 18, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2297), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [16214] = 18, - ACTIONS(2091), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2299), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [16278] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2070), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2072), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2301), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [16342] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2054), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(2303), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [16406] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1592), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1594), 13, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16440] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1578), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1580), 13, - anon_sym_LPAREN, + ACTIONS(2254), 2, anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16474] = 14, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2204), 1, - anon_sym_QMARK, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(834), 1, - sym__unannotated_type, - STATE(906), 1, - sym_annotated_type, + [15181] = 5, + ACTIONS(1784), 1, + anon_sym_non_DASHsealed, + ACTIONS(2256), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(1252), 2, - sym_wildcard, - sym__type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(768), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(1781), 10, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16530] = 18, - ACTIONS(2091), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + ACTIONS(1786), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [15219] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2259), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [15283] = 18, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2076), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2084), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, + ACTIONS(2086), 1, anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2092), 1, anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2094), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2096), 1, anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2100), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2106), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2078), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2080), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, + ACTIONS(2082), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2090), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2098), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(2305), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [16594] = 16, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - sym_identifier, - ACTIONS(2309), 1, - anon_sym_DOT, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2313), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2315), 1, - sym_this, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1121), 1, - aux_sym_receiver_parameter_repeat1, - STATE(1288), 1, - sym__variable_declarator_id, + ACTIONS(2261), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [15347] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1508), 3, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2263), 2, anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_COLON_COLON, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [16654] = 11, - ACTIONS(464), 1, + anon_sym_SEMI, + [15411] = 11, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(468), 1, + ACTIONS(436), 1, anon_sym_non_DASHsealed, - ACTIONS(2210), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2216), 1, + ACTIONS(2190), 1, anon_sym_SEMI, - ACTIONS(2317), 1, + ACTIONS(2265), 1, anon_sym_RBRACE, - STATE(1144), 1, + STATE(1029), 1, sym_enum_constant, - STATE(1358), 1, - sym_modifiers, - STATE(1375), 1, + STATE(1310), 1, sym_enum_body_declarations, + STATE(1342), 1, + sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(625), 4, + STATE(599), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(462), 13, + ACTIONS(432), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -63027,2399 +60662,2076 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [16704] = 19, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + [15461] = 18, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2319), 1, - anon_sym_COLON, - ACTIONS(2321), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [16770] = 18, - ACTIONS(2091), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2323), 1, - anon_sym_SEMI, + ACTIONS(2267), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [16833] = 14, - ACTIONS(424), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15524] = 14, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(2325), 1, + ACTIONS(2269), 1, anon_sym_open, - ACTIONS(2327), 1, + ACTIONS(2271), 1, anon_sym_module, - ACTIONS(2329), 1, + ACTIONS(2273), 1, anon_sym_package, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, - sym_generic_type, - STATE(826), 1, + sym_scoped_type_identifier, + STATE(767), 1, sym__unannotated_type, + STATE(768), 1, + sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16888] = 18, - ACTIONS(2091), 1, + [15579] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2331), 1, - anon_sym_COLON, + ACTIONS(2275), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [16951] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15642] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2333), 1, - anon_sym_RBRACK, + ACTIONS(2277), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17014] = 17, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_class, - ACTIONS(2278), 1, - anon_sym_enum, - ACTIONS(2280), 1, - anon_sym_record, - ACTIONS(2282), 1, - anon_sym_ATinterface, - ACTIONS(2284), 1, - anon_sym_interface, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(776), 1, - sym_type_parameters, - STATE(777), 1, - sym__unannotated_type, - STATE(1097), 1, - sym__method_header, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15705] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, + ACTIONS(2279), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [17075] = 18, - ACTIONS(2091), 1, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15768] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2335), 1, - anon_sym_RBRACK, + ACTIONS(2281), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17138] = 3, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15831] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, + ACTIONS(2283), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1547), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1549), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15894] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, + anon_sym_AMP, + ACTIONS(2056), 1, + anon_sym_AMP_AMP, + ACTIONS(2058), 1, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(2060), 1, + anon_sym_CARET, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, + anon_sym_QMARK, + ACTIONS(2285), 1, anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [17171] = 14, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(1359), 1, - sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(834), 1, - sym__unannotated_type, - STATE(906), 1, - sym_annotated_type, - STATE(1014), 1, - sym__type, - STATE(1203), 1, - sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(781), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [17226] = 14, - ACTIONS(424), 1, + ACTIONS(1962), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2036), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2038), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2046), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [15957] = 14, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(834), 1, + STATE(773), 1, sym__unannotated_type, - STATE(906), 1, + STATE(858), 1, sym_annotated_type, - STATE(1014), 1, + STATE(995), 1, sym__type, - STATE(1341), 1, + STATE(1242), 1, sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(732), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [17281] = 17, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_class, - ACTIONS(2278), 1, - anon_sym_enum, - ACTIONS(2280), 1, - anon_sym_record, - ACTIONS(2282), 1, - anon_sym_ATinterface, - ACTIONS(2284), 1, - anon_sym_interface, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(776), 1, - sym_type_parameters, - STATE(779), 1, - sym__unannotated_type, - STATE(1097), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [17342] = 18, - ACTIONS(2091), 1, + [16012] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2337), 1, - anon_sym_RPAREN, + ACTIONS(2287), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17405] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16075] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2286), 1, - anon_sym_COLON, + ACTIONS(2289), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17468] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16138] = 17, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(2226), 1, + anon_sym_class, + ACTIONS(2228), 1, + anon_sym_enum, + ACTIONS(2230), 1, + anon_sym_record, + ACTIONS(2232), 1, + anon_sym_ATinterface, + ACTIONS(2234), 1, + anon_sym_interface, + STATE(740), 1, + sym_type_parameters, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(801), 1, + sym__unannotated_type, + STATE(1121), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16199] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2339), 1, - anon_sym_RBRACE, + ACTIONS(2291), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17531] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16262] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2341), 1, - anon_sym_RBRACK, + ACTIONS(2293), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17594] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16325] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2343), 1, - anon_sym_SEMI, + ACTIONS(2295), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17657] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16388] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2345), 1, + ACTIONS(2297), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17720] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16451] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2347), 1, - anon_sym_SEMI, + ACTIONS(2299), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17783] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16514] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2349), 1, - anon_sym_RBRACE, + ACTIONS(2301), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17846] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16577] = 14, + ACTIONS(491), 1, + anon_sym_AT, + ACTIONS(2242), 1, + sym_identifier, + STATE(435), 1, + sym__unannotated_type, + STATE(442), 1, + sym_generic_type, + STATE(460), 1, + sym_scoped_type_identifier, + STATE(555), 1, + sym_annotated_type, + STATE(557), 1, + sym__type, + STATE(572), 1, + sym_record_pattern, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2248), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2250), 2, + sym_boolean_type, + sym_void_type, + STATE(509), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(735), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2246), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16632] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2351), 1, - anon_sym_SEMI, + ACTIONS(2261), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17909] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16695] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2353), 1, - anon_sym_COLON, + ACTIONS(2303), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [17972] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16758] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2355), 1, + ACTIONS(2305), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18035] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1608), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1610), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [18068] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1612), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1614), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [18101] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16821] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2357), 1, - anon_sym_RPAREN, + ACTIONS(2307), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18164] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16884] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2359), 1, + ACTIONS(2309), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18227] = 14, - ACTIONS(424), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [16947] = 14, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(834), 1, + STATE(773), 1, sym__unannotated_type, - STATE(906), 1, + STATE(858), 1, sym_annotated_type, - STATE(1014), 1, + STATE(995), 1, sym__type, - STATE(1250), 1, + STATE(1204), 1, sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(732), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [18282] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1551), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1553), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [18315] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + [17002] = 18, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2361), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [18378] = 18, - ACTIONS(2091), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2363), 1, + ACTIONS(2311), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18441] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17065] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2365), 1, + ACTIONS(2313), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18504] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17128] = 18, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2367), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [18567] = 18, - ACTIONS(2091), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2369), 1, + ACTIONS(2315), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18630] = 18, - ACTIONS(2091), 1, - anon_sym_AMP, - ACTIONS(2099), 1, - anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17191] = 18, + ACTIONS(2044), 1, anon_sym_SLASH, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 1, - anon_sym_CARET, - ACTIONS(2115), 1, + ACTIONS(2048), 1, anon_sym_GT_GT, - ACTIONS(2117), 1, + ACTIONS(2050), 1, anon_sym_instanceof, - ACTIONS(2119), 1, - anon_sym_QMARK, - ACTIONS(2371), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2093), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2095), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2105), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2113), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - [18693] = 18, - ACTIONS(2091), 1, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2373), 1, + ACTIONS(2317), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18756] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17254] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2375), 1, - anon_sym_RPAREN, + ACTIONS(2319), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18819] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17317] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2377), 1, + ACTIONS(2321), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18882] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17380] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2379), 1, - anon_sym_SEMI, + ACTIONS(2323), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [18945] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17443] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2381), 1, + ACTIONS(2325), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19008] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17506] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2383), 1, + ACTIONS(2327), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19071] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17569] = 17, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(2226), 1, + anon_sym_class, + ACTIONS(2228), 1, + anon_sym_enum, + ACTIONS(2230), 1, + anon_sym_record, + ACTIONS(2232), 1, + anon_sym_ATinterface, + ACTIONS(2234), 1, + anon_sym_interface, + STATE(740), 1, + sym_type_parameters, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(800), 1, + sym__unannotated_type, + STATE(1121), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17630] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2385), 1, - anon_sym_SEMI, + ACTIONS(2329), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19134] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17693] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2387), 1, + ACTIONS(2331), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19197] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17756] = 14, + ACTIONS(491), 1, + anon_sym_AT, + ACTIONS(1281), 1, + sym_identifier, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(773), 1, + sym__unannotated_type, + STATE(858), 1, + sym_annotated_type, + STATE(995), 1, + sym__type, + STATE(1271), 1, + sym_type_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(732), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17811] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2389), 1, - anon_sym_SEMI, + ACTIONS(2333), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19260] = 18, - ACTIONS(2091), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17874] = 18, + ACTIONS(2044), 1, + anon_sym_SLASH, + ACTIONS(2048), 1, + anon_sym_GT_GT, + ACTIONS(2050), 1, + anon_sym_instanceof, + ACTIONS(2052), 1, anon_sym_AMP, - ACTIONS(2099), 1, + ACTIONS(2056), 1, anon_sym_AMP_AMP, - ACTIONS(2101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2107), 1, - anon_sym_SLASH, - ACTIONS(2109), 1, + ACTIONS(2058), 1, anon_sym_PIPE, - ACTIONS(2111), 1, + ACTIONS(2060), 1, anon_sym_CARET, - ACTIONS(2115), 1, - anon_sym_GT_GT, - ACTIONS(2117), 1, - anon_sym_instanceof, - ACTIONS(2119), 1, + ACTIONS(2070), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2072), 1, anon_sym_QMARK, - ACTIONS(2391), 1, - anon_sym_RBRACK, + ACTIONS(2335), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 2, + ACTIONS(1962), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2093), 2, + ACTIONS(2036), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2095), 2, + ACTIONS(2038), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2097), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2103), 2, + ACTIONS(2040), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2105), 2, + ACTIONS(2042), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2113), 2, + ACTIONS(2046), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - [19323] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1618), 11, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - [19355] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1531), 11, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1529), 12, - anon_sym_DOT, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - [19387] = 6, - ACTIONS(2393), 1, - anon_sym_LPAREN, - ACTIONS(2395), 1, - anon_sym_DOT, - STATE(800), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1638), 7, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1634), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [19425] = 13, - ACTIONS(424), 1, + ACTIONS(2054), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [17937] = 13, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(834), 1, + STATE(773), 1, sym__unannotated_type, - STATE(906), 1, + STATE(858), 1, sym_annotated_type, - STATE(1042), 1, + STATE(973), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(732), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [19477] = 13, - ACTIONS(424), 1, + [17989] = 13, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(834), 1, + STATE(773), 1, sym__unannotated_type, - STATE(906), 1, + STATE(858), 1, sym_annotated_type, - STATE(1108), 1, + STATE(957), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(732), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [19529] = 4, - ACTIONS(2295), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1529), 11, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_implements, - anon_sym_permits, - anon_sym_record, - sym_this, - sym_identifier, - ACTIONS(1531), 11, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [19563] = 16, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2397), 1, - sym_identifier, - ACTIONS(2399), 1, - anon_sym_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(853), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1038), 1, - sym__method_declarator, - STATE(1135), 1, - sym_variable_declarator, - STATE(1307), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [19621] = 13, - ACTIONS(424), 1, + [18041] = 13, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(834), 1, + STATE(773), 1, sym__unannotated_type, - STATE(906), 1, + STATE(858), 1, sym_annotated_type, - STATE(1255), 1, + STATE(1068), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(732), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [19673] = 13, - ACTIONS(424), 1, + [18093] = 13, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(834), 1, + STATE(773), 1, sym__unannotated_type, - STATE(906), 1, + STATE(858), 1, sym_annotated_type, - STATE(1050), 1, + STATE(996), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(732), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [19725] = 13, - ACTIONS(424), 1, + [18145] = 13, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(834), 1, + STATE(773), 1, sym__unannotated_type, - STATE(906), 1, + STATE(858), 1, sym_annotated_type, - STATE(1287), 1, + STATE(1252), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(732), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [19777] = 13, - ACTIONS(424), 1, + [18197] = 13, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(834), 1, + STATE(773), 1, sym__unannotated_type, - STATE(906), 1, + STATE(858), 1, sym_annotated_type, - STATE(1072), 1, + STATE(1024), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(732), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [19829] = 13, - ACTIONS(424), 1, + [18249] = 13, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(834), 1, + STATE(773), 1, sym__unannotated_type, - STATE(906), 1, + STATE(858), 1, sym_annotated_type, - STATE(1053), 1, + STATE(1259), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(781), 4, + STATE(732), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [19881] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, + [18301] = 6, + ACTIONS(2337), 1, + anon_sym_LPAREN, + ACTIONS(2339), 1, anon_sym_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1031), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1354), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [19934] = 3, + STATE(748), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1602), 9, + ACTIONS(1529), 7, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1600), 13, + ACTIONS(1525), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -65433,11 +62745,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [19965] = 3, + [18339] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(422), 9, + ACTIONS(1474), 9, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -65447,7 +62759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SEMI, anon_sym_AT, - ACTIONS(420), 13, + ACTIONS(1472), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -65461,26 +62773,26 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [19996] = 8, - ACTIONS(464), 1, + [18370] = 8, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(468), 1, + ACTIONS(436), 1, anon_sym_non_DASHsealed, - ACTIONS(2210), 1, + ACTIONS(2184), 1, sym_identifier, - STATE(1144), 1, + STATE(1029), 1, sym_enum_constant, - STATE(1358), 1, + STATE(1342), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(625), 4, + STATE(599), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(462), 13, + ACTIONS(432), 13, anon_sym_final, anon_sym_default, anon_sym_synchronized, @@ -65494,902 +62806,646 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [20037] = 12, - ACTIONS(424), 1, + [18411] = 12, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - ACTIONS(2401), 1, + ACTIONS(2341), 1, anon_sym_QMARK, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, - sym_generic_type, - STATE(826), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(792), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [20086] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1307), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [20139] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1058), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1354), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [20192] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1061), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1354), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [20245] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2397), 1, - sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(853), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1038), 1, - sym__method_declarator, - STATE(1135), 1, - sym_variable_declarator, - STATE(1320), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [20297] = 14, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_class, - ACTIONS(2278), 1, - anon_sym_enum, - ACTIONS(2280), 1, - anon_sym_record, - ACTIONS(2282), 1, - anon_sym_ATinterface, - ACTIONS(2284), 1, - anon_sym_interface, - STATE(695), 1, sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(801), 1, + STATE(767), 1, sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [20349] = 11, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2403), 1, - sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, + STATE(768), 1, sym_generic_type, - STATE(825), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(786), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20395] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2397), 1, - sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(853), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1038), 1, - sym__method_declarator, - STATE(1135), 1, - sym_variable_declarator, - STATE(1373), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [20447] = 11, - ACTIONS(424), 1, + [18460] = 11, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(825), 1, + STATE(847), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(786), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20493] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2397), 1, - sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(853), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1038), 1, - sym__method_declarator, - STATE(1135), 1, - sym_variable_declarator, - STATE(1317), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [20545] = 12, - ACTIONS(252), 1, + [18506] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(424), 1, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2405), 1, + ACTIONS(2343), 1, sym_identifier, - STATE(812), 1, + STATE(761), 1, sym_type_arguments, - STATE(985), 1, + STATE(944), 1, sym_scoped_type_identifier, - STATE(1145), 1, - sym_generic_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2407), 2, - sym_boolean_type, - sym_void_type, - STATE(1198), 2, - sym_integral_type, - sym_floating_point_type, - STATE(783), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [20593] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2397), 1, - sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(853), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1038), 1, - sym__method_declarator, - STATE(1135), 1, - sym_variable_declarator, - STATE(1316), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [20645] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2397), 1, - sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(853), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1038), 1, - sym__method_declarator, - STATE(1135), 1, - sym_variable_declarator, - STATE(1377), 1, - sym__variable_declarator_list, + STATE(1031), 1, + sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2345), 2, + sym_boolean_type, + sym_void_type, + STATE(1185), 2, + sym_integral_type, + sym_floating_point_type, + STATE(738), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [20697] = 11, - ACTIONS(424), 1, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [18554] = 11, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(826), 1, + STATE(796), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20743] = 11, - ACTIONS(424), 1, + [18600] = 11, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(2347), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(877), 1, + STATE(850), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(728), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20789] = 12, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(424), 1, + [18646] = 11, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2409), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(805), 1, - sym_type_arguments, - STATE(994), 1, + STATE(757), 1, sym_scoped_type_identifier, - STATE(1170), 1, + STATE(767), 1, + sym__unannotated_type, + STATE(768), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(2411), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(1284), 2, + STATE(771), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20837] = 11, - ACTIONS(424), 1, + [18692] = 12, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2413), 1, + ACTIONS(2349), 1, sym_identifier, - STATE(433), 1, - sym__unannotated_type, - STATE(461), 1, + STATE(755), 1, + sym_type_arguments, + STATE(793), 1, sym_scoped_type_identifier, - STATE(469), 1, + STATE(814), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2003), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(2005), 2, + ACTIONS(2351), 2, sym_boolean_type, sym_void_type, - STATE(476), 3, - sym_array_type, + STATE(821), 2, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2001), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20883] = 12, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(424), 1, + [18740] = 11, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2415), 1, + ACTIONS(1281), 1, sym_identifier, - STATE(812), 1, - sym_type_arguments, - STATE(841), 1, + STATE(757), 1, sym_scoped_type_identifier, - STATE(860), 1, + STATE(768), 1, sym_generic_type, + STATE(845), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(2417), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(862), 2, + STATE(771), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(787), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20931] = 11, - ACTIONS(424), 1, + [18786] = 11, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(2353), 1, sym_identifier, - STATE(695), 1, + STATE(436), 1, + sym__unannotated_type, + STATE(460), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(476), 1, sym_generic_type, - STATE(824), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(2248), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(2250), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(509), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(2246), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [18832] = 14, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(2226), 1, + anon_sym_class, + ACTIONS(2228), 1, + anon_sym_enum, + ACTIONS(2230), 1, + anon_sym_record, + ACTIONS(2232), 1, + anon_sym_ATinterface, + ACTIONS(2234), 1, + anon_sym_interface, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(808), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [20977] = 12, - ACTIONS(252), 1, + [18884] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(424), 1, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2419), 1, + ACTIONS(2355), 1, sym_identifier, - STATE(805), 1, + STATE(761), 1, sym_type_arguments, - STATE(843), 1, + STATE(784), 1, sym_scoped_type_identifier, - STATE(861), 1, + STATE(803), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(2421), 2, + ACTIONS(2357), 2, sym_boolean_type, sym_void_type, - STATE(863), 2, + STATE(830), 2, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(733), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [21025] = 12, - ACTIONS(252), 1, + [18932] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(424), 1, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2423), 1, + ACTIONS(2359), 1, sym_identifier, - STATE(812), 1, + STATE(755), 1, sym_type_arguments, - STATE(846), 1, + STATE(931), 1, sym_scoped_type_identifier, - STATE(855), 1, + STATE(1044), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(2425), 2, + ACTIONS(2361), 2, sym_boolean_type, sym_void_type, - STATE(872), 2, + STATE(1141), 2, sym_integral_type, sym_floating_point_type, - STATE(790), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [21073] = 14, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - sym_identifier, - ACTIONS(2311), 1, + [18980] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1567), 9, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, sym_underscore_pattern, - ACTIONS(2313), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2315), 1, + anon_sym_implements, + anon_sym_permits, + anon_sym_throws, sym_this, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1121), 1, - aux_sym_receiver_parameter_repeat1, - STATE(1288), 1, - sym__variable_declarator_id, + sym_identifier, + ACTIONS(1569), 12, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19010] = 11, + ACTIONS(491), 1, + anon_sym_AT, + ACTIONS(1281), 1, + sym_identifier, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(850), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(728), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21125] = 12, - ACTIONS(252), 1, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [19056] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(424), 1, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2427), 1, + ACTIONS(2363), 1, sym_identifier, - STATE(805), 1, + STATE(761), 1, sym_type_arguments, - STATE(844), 1, + STATE(787), 1, sym_scoped_type_identifier, - STATE(850), 1, + STATE(802), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(2429), 2, + ACTIONS(2365), 2, sym_boolean_type, sym_void_type, - STATE(870), 2, + STATE(835), 2, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(742), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [21173] = 11, - ACTIONS(424), 1, + [19104] = 12, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(1359), 1, + ACTIONS(2367), 1, sym_identifier, - STATE(695), 1, + STATE(755), 1, + sym_type_arguments, + STATE(789), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(816), 1, sym_generic_type, - STATE(849), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(2369), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, - sym_array_type, + STATE(829), 2, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [19152] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1492), 9, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1494), 12, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19182] = 12, + ACTIONS(505), 1, + sym_underscore_pattern, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 1, + anon_sym_RPAREN, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(857), 1, + sym__unannotated_type, + STATE(882), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(1124), 2, + sym_record_pattern, + sym_record_pattern_component, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [21219] = 5, - ACTIONS(2435), 1, + [19229] = 5, + ACTIONS(2379), 1, anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 2, + ACTIONS(2377), 2, anon_sym_LT, anon_sym_QMARK, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2431), 13, + ACTIONS(2375), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -66403,82 +63459,47 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [21252] = 13, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2438), 1, + [19262] = 13, + ACTIONS(1281), 1, sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(865), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1377), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21301] = 12, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1009), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1321), 1, - sym__variable_declarator_list, + ACTIONS(2226), 1, + anon_sym_class, + ACTIONS(2228), 1, + anon_sym_enum, + ACTIONS(2232), 1, + anon_sym_ATinterface, + ACTIONS(2234), 1, + anon_sym_interface, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(807), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21348] = 3, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [19311] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1861), 7, + ACTIONS(1792), 7, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_LT, @@ -66486,7 +63507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1859), 13, + ACTIONS(1790), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -66500,11 +63521,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [21377] = 3, + [19340] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 7, + ACTIONS(1771), 7, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_LT, @@ -66512,7 +63533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1733), 13, + ACTIONS(1769), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -66526,117 +63547,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [21406] = 13, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2311), 1, - sym_underscore_pattern, - ACTIONS(2440), 1, - sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(864), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1316), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21455] = 12, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1008), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1321), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21502] = 12, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1366), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21549] = 3, + [19369] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1897), 7, + ACTIONS(1767), 7, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_LT, @@ -66644,7 +63559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1895), 13, + ACTIONS(1765), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -66658,82 +63573,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [21578] = 12, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1317), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21625] = 13, - ACTIONS(1359), 1, - sym_identifier, - ACTIONS(2276), 1, - anon_sym_class, - ACTIONS(2278), 1, - anon_sym_enum, - ACTIONS(2282), 1, - anon_sym_ATinterface, - ACTIONS(2284), 1, - anon_sym_interface, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(797), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [21674] = 3, + [19398] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1969), 7, + ACTIONS(1872), 7, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_LT, @@ -66741,7 +63585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1967), 13, + ACTIONS(1870), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -66755,722 +63599,472 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [21703] = 12, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1059), 1, - sym__variable_declarator_id, - STATE(1135), 1, - sym_variable_declarator, - STATE(1321), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21750] = 10, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2442), 1, - sym_identifier, - STATE(992), 1, - sym_scoped_type_identifier, - STATE(1106), 1, - sym_generic_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(2444), 2, - sym_boolean_type, - sym_void_type, - STATE(1194), 2, - sym_integral_type, - sym_floating_point_type, - STATE(810), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [21792] = 11, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2446), 1, - anon_sym_DOT_DOT_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1297), 1, - sym__variable_declarator_id, + [19427] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(1626), 6, + anon_sym_DOT, sym_underscore_pattern, - sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21836] = 14, - ACTIONS(13), 1, - anon_sym_DQUOTE, - ACTIONS(15), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2448), 1, - sym_identifier, - ACTIONS(2450), 1, - anon_sym_new, - ACTIONS(2452), 1, + anon_sym_implements, + anon_sym_permits, sym_this, - ACTIONS(2454), 1, - sym_super, - STATE(428), 1, - sym__reserved_identifier, - STATE(554), 1, - sym_string_literal, - STATE(555), 1, - sym__unqualified_object_creation_expression, - STATE(919), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(570), 2, - sym__string_literal, - sym__multiline_string_literal, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21886] = 11, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2313), 1, - anon_sym_DOT_DOT_DOT, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1288), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [21930] = 10, - ACTIONS(424), 1, + ACTIONS(1628), 13, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19455] = 10, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2456), 1, + ACTIONS(2382), 1, sym_identifier, - STATE(990), 1, + STATE(935), 1, sym_scoped_type_identifier, - STATE(1104), 1, + STATE(1053), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(2458), 2, + ACTIONS(2384), 2, sym_boolean_type, sym_void_type, - STATE(1183), 2, + STATE(1139), 2, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [21972] = 10, - ACTIONS(424), 1, + [19497] = 10, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2460), 1, + ACTIONS(2386), 1, sym_identifier, - STATE(1001), 1, + STATE(947), 1, sym_scoped_type_identifier, - STATE(1075), 1, + STATE(1060), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(2462), 2, + ACTIONS(2388), 2, sym_boolean_type, sym_void_type, - STATE(1188), 2, + STATE(1161), 2, sym_integral_type, sym_floating_point_type, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [22014] = 14, - ACTIONS(13), 1, - anon_sym_DQUOTE, - ACTIONS(15), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2450), 1, - anon_sym_new, - ACTIONS(2464), 1, + [19539] = 11, + ACTIONS(505), 1, + sym_underscore_pattern, + ACTIONS(2371), 1, sym_identifier, - ACTIONS(2466), 1, - sym_this, - ACTIONS(2468), 1, - sym_super, - STATE(490), 1, - sym__reserved_identifier, - STATE(554), 1, - sym_string_literal, - STATE(555), 1, - sym__unqualified_object_creation_expression, - STATE(919), 1, - sym_type_arguments, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(857), 1, + sym__unannotated_type, + STATE(882), 1, + sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(570), 2, - sym__string_literal, - sym__multiline_string_literal, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [22064] = 10, - ACTIONS(424), 1, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(1268), 2, + sym_record_pattern, + sym_record_pattern_component, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [19583] = 10, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2470), 1, + ACTIONS(2390), 1, sym_identifier, - STATE(997), 1, + STATE(925), 1, sym_scoped_type_identifier, - STATE(1067), 1, + STATE(1062), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(2472), 2, + ACTIONS(2392), 2, sym_boolean_type, sym_void_type, - STATE(1221), 2, + STATE(1155), 2, sym_integral_type, sym_floating_point_type, - STATE(809), 4, + STATE(753), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [22106] = 14, - ACTIONS(13), 1, - anon_sym_DQUOTE, - ACTIONS(15), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2448), 1, - sym_identifier, - ACTIONS(2450), 1, - anon_sym_new, - ACTIONS(2452), 1, - sym_this, - ACTIONS(2474), 1, - sym_super, - STATE(428), 1, - sym__reserved_identifier, - STATE(554), 1, - sym_string_literal, - STATE(555), 1, - sym__unqualified_object_creation_expression, - STATE(902), 1, - sym_type_arguments, + [19625] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(570), 2, - sym__string_literal, - sym__multiline_string_literal, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [22156] = 11, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(1630), 6, anon_sym_DOT, - ACTIONS(2476), 1, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + sym_this, sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(1277), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [22199] = 6, - ACTIONS(252), 1, + ACTIONS(1632), 13, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19653] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(2478), 1, + ACTIONS(2394), 1, anon_sym_DOT, - STATE(715), 1, + STATE(763), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 6, + ACTIONS(1519), 5, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + sym_this, + sym_identifier, + ACTIONS(1521), 11, anon_sym_RPAREN, anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(1529), 9, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_this, - sym_identifier, - [22232] = 9, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2483), 1, - anon_sym_PIPE, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(894), 1, - aux_sym_catch_type_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2481), 8, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [22271] = 10, - ACTIONS(252), 1, + [19687] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1337), 1, + ACTIONS(2396), 1, anon_sym_DOT, - ACTIONS(1341), 1, - anon_sym_AT, - STATE(569), 1, - sym_argument_list, - STATE(735), 1, + STATE(764), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1334), 2, + ACTIONS(1335), 5, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + sym_this, + sym_identifier, + ACTIONS(1359), 11, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_COLON_COLON, - ACTIONS(2485), 2, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_SEMI, - ACTIONS(1317), 8, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [22312] = 10, - ACTIONS(464), 1, anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(859), 1, - sym__reserved_identifier, - STATE(1371), 1, - sym__variable_declarator_id, + anon_sym_DOT_DOT_DOT, + [19721] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(1638), 6, + anon_sym_DOT, sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + sym_this, sym_identifier, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [22353] = 11, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, + ACTIONS(1640), 13, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DOT, - ACTIONS(2487), 1, - sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(1091), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [22396] = 10, - ACTIONS(35), 1, + anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2489), 1, - anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - STATE(535), 1, - sym_block, - STATE(735), 1, - sym_type_arguments, - STATE(1225), 1, - sym_formal_parameters, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19749] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1317), 8, + ACTIONS(1622), 6, + anon_sym_DOT, sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, + anon_sym_implements, + anon_sym_permits, + sym_this, sym_identifier, - [22436] = 10, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2489), 1, + ACTIONS(1624), 13, anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - STATE(523), 1, - sym_block, - STATE(735), 1, - sym_type_arguments, - STATE(1225), 1, - sym_formal_parameters, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1341), 2, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(1317), 8, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [22476] = 10, - ACTIONS(1359), 1, + anon_sym_DOT_DOT_DOT, + [19777] = 10, + ACTIONS(491), 1, + anon_sym_AT, + ACTIONS(2398), 1, sym_identifier, - STATE(695), 1, + STATE(948), 1, sym_scoped_type_identifier, - STATE(757), 1, + STATE(1021), 1, sym_generic_type, - STATE(816), 1, - sym__unannotated_type, - STATE(895), 1, - sym_catch_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(2400), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, - sym_array_type, + STATE(1154), 2, sym_integral_type, sym_floating_point_type, - ACTIONS(87), 5, + STATE(752), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [22516] = 8, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2495), 1, - anon_sym_PIPE, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, + [19819] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(2493), 8, + ACTIONS(1757), 6, + anon_sym_DOT, sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, + anon_sym_implements, + anon_sym_permits, + sym_this, sym_identifier, - [22552] = 10, - ACTIONS(464), 1, + ACTIONS(1759), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(1992), 1, + anon_sym_DOT_DOT_DOT, + [19846] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1602), 6, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + sym_this, + sym_identifier, + ACTIONS(1604), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(2497), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19873] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1537), 6, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + sym_this, sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(1010), 1, - sym__method_declarator, - STATE(1272), 1, - sym__reserved_identifier, + ACTIONS(1539), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19900] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [22592] = 10, - ACTIONS(464), 1, + ACTIONS(1761), 6, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + sym_this, + sym_identifier, + ACTIONS(1763), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(1992), 1, + anon_sym_DOT_DOT_DOT, + [19927] = 14, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2497), 1, + ACTIONS(2402), 1, sym_identifier, - STATE(580), 1, + ACTIONS(2404), 1, + anon_sym_DOT, + ACTIONS(2406), 1, + sym_underscore_pattern, + ACTIONS(2408), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2410), 1, + sym_this, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(769), 1, sym_dimensions, - STATE(1046), 1, - sym__method_declarator, - STATE(1272), 1, - sym__reserved_identifier, + STATE(1128), 1, + aux_sym_receiver_parameter_repeat1, + STATE(1244), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + ACTIONS(1504), 3, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_COLON_COLON, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [22632] = 7, - ACTIONS(464), 1, + [19976] = 7, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(769), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1504), 9, + ACTIONS(1508), 9, anon_sym_RPAREN, anon_sym_AMP, anon_sym_GT, @@ -67480,232 +64074,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [22666] = 9, - ACTIONS(1359), 1, + [20010] = 4, + ACTIONS(2394), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1519), 5, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + sym_this, + sym_identifier, + ACTIONS(1521), 11, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [20038] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1717), 6, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + sym_this, + sym_identifier, + ACTIONS(1719), 11, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [20064] = 10, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(806), 1, + STATE(833), 1, sym__unannotated_type, + STATE(1048), 1, + sym_catch_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [22703] = 9, - ACTIONS(1359), 1, + [20104] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1519), 6, + anon_sym_DOT, + sym_underscore_pattern, + anon_sym_implements, + anon_sym_permits, + sym_this, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, - STATE(757), 1, - sym_generic_type, - STATE(823), 1, - sym__unannotated_type, + ACTIONS(1521), 11, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [20130] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(91), 2, - sym_boolean_type, - sym_void_type, - STATE(753), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(87), 5, + ACTIONS(2414), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AT, + ACTIONS(2412), 13, + anon_sym_extends, + anon_sym_implements, + anon_sym_permits, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [22740] = 9, - ACTIONS(1359), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [20155] = 7, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1504), 8, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_implements, + anon_sym_permits, + [20188] = 9, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(794), 1, + STATE(836), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [22777] = 9, - ACTIONS(464), 1, - anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2476), 1, - sym_identifier, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(752), 1, - sym_dimensions, - STATE(1277), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(945), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [22814] = 9, - ACTIONS(1359), 1, + [20225] = 9, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(818), 1, + STATE(841), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [22851] = 4, - ACTIONS(2478), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1531), 6, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1529), 9, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_this, - sym_identifier, - [22878] = 9, - ACTIONS(1359), 1, + [20262] = 9, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(798), 1, + STATE(811), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [22915] = 7, - ACTIONS(464), 1, + [20299] = 14, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1504), 1, + anon_sym_COLON_COLON, + ACTIONS(2145), 1, anon_sym_LBRACK, - STATE(580), 1, + ACTIONS(2406), 1, + sym_underscore_pattern, + ACTIONS(2416), 1, + sym_identifier, + ACTIONS(2418), 1, + anon_sym_DOT, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(769), 1, sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(978), 1, + sym__method_declarator, + STATE(1119), 1, + sym_variable_declarator, + STATE(1354), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(1508), 8, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_implements, - anon_sym_permits, - [22948] = 3, + [20346] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 3, + ACTIONS(2422), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AT, - ACTIONS(2499), 13, + ACTIONS(2420), 13, anon_sym_extends, anon_sym_implements, anon_sym_permits, @@ -67719,1920 +64361,2126 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [22973] = 9, - ACTIONS(1359), 1, + [20371] = 9, + ACTIONS(1281), 1, sym_identifier, - STATE(695), 1, - sym_scoped_type_identifier, STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, sym_generic_type, - STATE(804), 1, + STATE(823), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(89), 2, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, - ACTIONS(91), 2, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - STATE(753), 3, + STATE(771), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(87), 5, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [23010] = 3, + [20408] = 9, + ACTIONS(1281), 1, + sym_identifier, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(817), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(2503), 13, - anon_sym_extends, - anon_sym_implements, - anon_sym_permits, + ACTIONS(85), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(87), 2, + sym_boolean_type, + sym_void_type, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(83), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, + [20445] = 9, + ACTIONS(1281), 1, + sym_identifier, + STATE(757), 1, + sym_scoped_type_identifier, + STATE(768), 1, + sym_generic_type, + STATE(815), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(85), 2, anon_sym_float, anon_sym_double, + ACTIONS(87), 2, sym_boolean_type, sym_void_type, - sym_identifier, - [23035] = 12, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(464), 1, + STATE(771), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(83), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [20482] = 12, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(1504), 1, + anon_sym_COLON_COLON, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, anon_sym_DOT, - ACTIONS(2507), 1, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(952), 1, + sym__variable_declarator_id, + STATE(1119), 1, + sym_variable_declarator, + STATE(1278), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20524] = 12, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_COLON_COLON, + ACTIONS(2145), 1, anon_sym_LBRACK, - STATE(487), 1, - sym_argument_list, - STATE(580), 1, + ACTIONS(2418), 1, + anon_sym_DOT, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(735), 1, - sym_type_arguments, - STATE(1192), 1, + STATE(769), 1, sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1119), 1, + sym_variable_declarator, + STATE(1354), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(450), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23077] = 12, - ACTIONS(252), 1, + [20566] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - STATE(486), 1, + ACTIONS(2426), 1, + anon_sym_DOT, + STATE(450), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(735), 1, + STATE(763), 1, sym_type_arguments, - STATE(1246), 1, + STATE(1151), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(448), 2, + STATE(425), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23119] = 12, - ACTIONS(252), 1, + [20608] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - STATE(486), 1, + ACTIONS(2428), 1, + anon_sym_DOT, + STATE(453), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(735), 1, + STATE(764), 1, sym_type_arguments, - STATE(1246), 1, + STATE(1261), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(867), 2, + STATE(819), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23161] = 12, - ACTIONS(252), 1, + [20650] = 4, + ACTIONS(2430), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2135), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1788), 10, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [20676] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(493), 1, + STATE(450), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(715), 1, + STATE(763), 1, sym_type_arguments, - STATE(1206), 1, + STATE(1151), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(866), 2, + STATE(824), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23203] = 12, - ACTIONS(252), 1, + [20718] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - STATE(487), 1, + ACTIONS(2428), 1, + anon_sym_DOT, + STATE(466), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(735), 1, + STATE(764), 1, sym_type_arguments, - STATE(1192), 1, + STATE(1150), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(868), 2, + STATE(828), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23245] = 12, - ACTIONS(252), 1, + [20760] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(495), 1, + STATE(464), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(715), 1, + STATE(763), 1, sym_type_arguments, - STATE(1190), 1, + STATE(1146), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(869), 2, + STATE(827), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23287] = 12, - ACTIONS(252), 1, + [20802] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2428), 1, anon_sym_DOT, - STATE(495), 1, + STATE(466), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(715), 1, + STATE(764), 1, sym_type_arguments, - STATE(1190), 1, + STATE(1150), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(449), 2, + STATE(427), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23329] = 4, - ACTIONS(2511), 1, + [20844] = 12, + ACTIONS(434), 1, anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_COLON_COLON, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_DOT, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(1009), 1, + sym__variable_declarator_id, + STATE(1119), 1, + sym_variable_declarator, + STATE(1278), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2192), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1978), 10, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, + ACTIONS(2406), 2, + sym_underscore_pattern, sym_identifier, - [23355] = 12, - ACTIONS(252), 1, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20886] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(464), 1, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2428), 1, anon_sym_DOT, - STATE(493), 1, + STATE(453), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(715), 1, + STATE(764), 1, sym_type_arguments, - STATE(1206), 1, + STATE(1261), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(446), 2, + STATE(426), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23397] = 8, - ACTIONS(252), 1, + [20928] = 12, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1514), 1, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2424), 1, + anon_sym_LBRACK, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(607), 1, - sym_record_pattern_body, - STATE(735), 1, + STATE(464), 1, + sym_argument_list, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(763), 1, sym_type_arguments, + STATE(1146), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 2, - anon_sym_LBRACK, + STATE(428), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(915), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [20970] = 12, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1317), 7, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [23430] = 8, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2489), 1, - anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(1504), 1, + anon_sym_COLON_COLON, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, anon_sym_DOT, - STATE(735), 1, - sym_type_arguments, - STATE(1237), 1, - sym_formal_parameters, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(1011), 1, + sym__variable_declarator_id, + STATE(1119), 1, + sym_variable_declarator, + STATE(1278), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 2, - anon_sym_LBRACK, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21012] = 12, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1317), 7, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2402), 1, sym_identifier, - [23463] = 10, - ACTIONS(464), 1, + ACTIONS(2406), 1, + sym_underscore_pattern, + ACTIONS(2408), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2410), 1, + sym_this, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(1128), 1, + aux_sym_receiver_parameter_repeat1, + STATE(1244), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21053] = 10, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2513), 1, + ACTIONS(2432), 1, sym_identifier, - ACTIONS(2515), 1, + ACTIONS(2434), 1, sym_this, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(769), 1, sym_dimensions, - STATE(1080), 1, + STATE(1090), 1, aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1504), 3, + ACTIONS(1508), 3, anon_sym_RPAREN, anon_sym_AMP, anon_sym_COLON_COLON, - STATE(945), 4, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21090] = 12, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2406), 1, + sym_underscore_pattern, + ACTIONS(2416), 1, + sym_identifier, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(978), 1, + sym__method_declarator, + STATE(1119), 1, + sym_variable_declarator, + STATE(1288), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21131] = 12, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2406), 1, + sym_underscore_pattern, + ACTIONS(2416), 1, + sym_identifier, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(978), 1, + sym__method_declarator, + STATE(1119), 1, + sym_variable_declarator, + STATE(1319), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21172] = 12, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2406), 1, + sym_underscore_pattern, + ACTIONS(2416), 1, + sym_identifier, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(978), 1, + sym__method_declarator, + STATE(1119), 1, + sym_variable_declarator, + STATE(1351), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21213] = 12, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2406), 1, + sym_underscore_pattern, + ACTIONS(2416), 1, + sym_identifier, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(978), 1, + sym__method_declarator, + STATE(1119), 1, + sym_variable_declarator, + STATE(1298), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21254] = 12, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2406), 1, + sym_underscore_pattern, + ACTIONS(2416), 1, + sym_identifier, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(978), 1, + sym__method_declarator, + STATE(1119), 1, + sym_variable_declarator, + STATE(1321), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23500] = 10, - ACTIONS(464), 1, + [21295] = 10, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(495), 1, + STATE(450), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(1190), 1, + STATE(1151), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(824), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(915), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21331] = 10, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(2424), 1, + anon_sym_LBRACK, + ACTIONS(2426), 1, + anon_sym_DOT, + STATE(450), 1, + sym_argument_list, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(1151), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(425), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(915), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21367] = 9, + ACTIONS(2436), 1, + anon_sym_RBRACE, + ACTIONS(2438), 1, + anon_sym_requires, + ACTIONS(2441), 1, + anon_sym_exports, + ACTIONS(2444), 1, + anon_sym_opens, + ACTIONS(2447), 1, + anon_sym_uses, + ACTIONS(2450), 1, + anon_sym_provides, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(804), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(918), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [21401] = 10, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_COLON_COLON, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_DOT, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(1275), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21437] = 9, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2453), 1, + anon_sym_LPAREN, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(840), 1, + sym_formal_parameters, + STATE(945), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2455), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21471] = 11, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2406), 1, + sym_underscore_pattern, + ACTIONS(2457), 1, + sym_identifier, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1119), 1, + sym_variable_declarator, + STATE(1321), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(449), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23536] = 8, - ACTIONS(2517), 1, - sym_identifier, - STATE(882), 1, - aux_sym_requires_module_directive_repeat1, - STATE(900), 1, - sym_requires_modifier, - STATE(1242), 1, - sym_scoped_identifier, - STATE(1243), 1, - sym__reserved_identifier, + [21509] = 10, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1119), 1, + sym_variable_declarator, + STATE(1298), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [23568] = 7, - ACTIONS(2521), 1, + ACTIONS(2406), 2, + sym_underscore_pattern, sym_identifier, - STATE(851), 1, - aux_sym_requires_module_directive_repeat1, - STATE(900), 1, - sym_requires_modifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2519), 2, - anon_sym_transitive, - anon_sym_static, - STATE(1224), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [23598] = 9, - ACTIONS(464), 1, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21545] = 11, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, - anon_sym_LPAREN, - STATE(580), 1, + ACTIONS(2406), 1, + sym_underscore_pattern, + ACTIONS(2459), 1, + sym_identifier, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(884), 1, - sym_formal_parameters, - STATE(995), 1, + STATE(769), 1, sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1119), 1, + sym_variable_declarator, + STATE(1319), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2523), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(945), 4, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23632] = 9, - ACTIONS(2525), 1, + [21583] = 9, + ACTIONS(2461), 1, anon_sym_RBRACE, - ACTIONS(2527), 1, + ACTIONS(2463), 1, anon_sym_requires, - ACTIONS(2530), 1, + ACTIONS(2465), 1, anon_sym_exports, - ACTIONS(2533), 1, + ACTIONS(2467), 1, anon_sym_opens, - ACTIONS(2536), 1, + ACTIONS(2469), 1, anon_sym_uses, - ACTIONS(2539), 1, + ACTIONS(2471), 1, anon_sym_provides, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(854), 2, + STATE(804), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(977), 5, + STATE(918), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [23666] = 10, - ACTIONS(464), 1, + [21617] = 10, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(493), 1, - sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(1206), 1, + STATE(769), 1, sym_dimensions, + STATE(1000), 1, + sym__variable_declarator_id, + STATE(1119), 1, + sym_variable_declarator, + STATE(1279), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(446), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23702] = 9, - ACTIONS(2542), 1, - anon_sym_RBRACE, - ACTIONS(2544), 1, - anon_sym_requires, - ACTIONS(2546), 1, - anon_sym_exports, - ACTIONS(2548), 1, - anon_sym_opens, - ACTIONS(2550), 1, - anon_sym_uses, - ACTIONS(2552), 1, - anon_sym_provides, + [21653] = 7, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(945), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(854), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(977), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [23736] = 9, - ACTIONS(2544), 1, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2455), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [21683] = 9, + ACTIONS(2463), 1, anon_sym_requires, - ACTIONS(2546), 1, + ACTIONS(2465), 1, anon_sym_exports, - ACTIONS(2548), 1, + ACTIONS(2467), 1, anon_sym_opens, - ACTIONS(2550), 1, + ACTIONS(2469), 1, anon_sym_uses, - ACTIONS(2552), 1, + ACTIONS(2471), 1, anon_sym_provides, - ACTIONS(2554), 1, + ACTIONS(2473), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(856), 2, + STATE(810), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(977), 5, + STATE(918), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [23770] = 6, - ACTIONS(1514), 1, - anon_sym_LPAREN, - ACTIONS(2556), 1, - anon_sym_DOT, - STATE(607), 1, - sym_record_pattern_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1531), 3, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - ACTIONS(1529), 7, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [23798] = 7, - ACTIONS(464), 1, + [21717] = 10, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(2424), 1, anon_sym_LBRACK, - STATE(580), 1, + ACTIONS(2426), 1, + anon_sym_DOT, + STATE(464), 1, + sym_argument_list, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(995), 1, + STATE(1146), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(428), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - ACTIONS(2523), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [23828] = 10, - ACTIONS(464), 1, + [21753] = 10, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(493), 1, - sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(1206), 1, + STATE(769), 1, sym_dimensions, + STATE(1010), 1, + sym__variable_declarator_id, + STATE(1119), 1, + sym_variable_declarator, + STATE(1279), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(866), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23864] = 10, - ACTIONS(464), 1, + [21789] = 10, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - ACTIONS(2509), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(495), 1, + STATE(464), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(1190), 1, + STATE(1146), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(869), 2, + STATE(827), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23900] = 9, - ACTIONS(464), 1, + [21825] = 10, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - STATE(493), 1, - sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(1206), 1, + STATE(769), 1, sym_dimensions, + STATE(1012), 1, + sym__variable_declarator_id, + STATE(1119), 1, + sym_variable_declarator, + STATE(1279), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(866), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23933] = 9, - ACTIONS(464), 1, + [21861] = 12, + ACTIONS(13), 1, + anon_sym_DQUOTE, + ACTIONS(15), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(2475), 1, + sym_identifier, + ACTIONS(2477), 1, + anon_sym_new, + ACTIONS(2479), 1, + sym_this, + ACTIONS(2481), 1, + sym_super, + STATE(518), 1, + sym_string_literal, + STATE(519), 1, + sym__unqualified_object_creation_expression, + STATE(1303), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(489), 2, + sym__string_literal, + sym__multiline_string_literal, + [21900] = 8, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - STATE(495), 1, - sym_argument_list, - STATE(580), 1, - aux_sym_dimensions_repeat1, - STATE(1190), 1, + STATE(547), 1, sym_dimensions, + STATE(626), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(869), 2, + ACTIONS(1460), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(433), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23966] = 8, - ACTIONS(464), 1, + [21931] = 8, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2559), 1, + ACTIONS(2483), 1, anon_sym_LPAREN, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(995), 1, + STATE(945), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2523), 3, + ACTIONS(2455), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(945), 4, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [23997] = 8, - ACTIONS(464), 1, + [21962] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, - anon_sym_LBRACK, - ACTIONS(2561), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - STATE(580), 1, + ACTIONS(2424), 1, + anon_sym_LBRACK, + STATE(464), 1, + sym_argument_list, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(995), 1, + STATE(1146), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2523), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(945), 4, + STATE(428), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24028] = 8, - ACTIONS(464), 1, + [21995] = 12, + ACTIONS(13), 1, + anon_sym_DQUOTE, + ACTIONS(15), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(2475), 1, + sym_identifier, + ACTIONS(2477), 1, + anon_sym_new, + ACTIONS(2479), 1, + sym_this, + ACTIONS(2485), 1, + sym_super, + STATE(518), 1, + sym_string_literal, + STATE(519), 1, + sym__unqualified_object_creation_expression, + STATE(1189), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(489), 2, + sym__string_literal, + sym__multiline_string_literal, + [22034] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(2507), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - STATE(564), 1, - sym_dimensions, - STATE(580), 1, + ACTIONS(2487), 1, + anon_sym_DOT_DOT_DOT, + STATE(626), 1, aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(1249), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 2, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(464), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24059] = 8, - ACTIONS(464), 1, + [22067] = 8, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - STATE(567), 1, + STATE(544), 1, sym_dimensions, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1535), 2, + ACTIONS(1454), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(464), 2, + STATE(433), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24090] = 8, - ACTIONS(464), 1, + [22098] = 12, + ACTIONS(13), 1, + anon_sym_DQUOTE, + ACTIONS(15), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(2477), 1, + anon_sym_new, + ACTIONS(2489), 1, + sym_identifier, + ACTIONS(2491), 1, + sym_this, + ACTIONS(2493), 1, + sym_super, + STATE(518), 1, + sym_string_literal, + STATE(519), 1, + sym__unqualified_object_creation_expression, + STATE(1303), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(489), 2, + sym__string_literal, + sym__multiline_string_literal, + [22137] = 10, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(1355), 1, + anon_sym_DOT, + ACTIONS(1359), 1, anon_sym_AT, - ACTIONS(2507), 1, + STATE(485), 1, + sym_argument_list, + STATE(764), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1335), 2, + sym_underscore_pattern, + sym_identifier, + ACTIONS(1352), 2, anon_sym_LBRACK, - STATE(521), 1, + anon_sym_COLON_COLON, + ACTIONS(2495), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [22172] = 8, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2424), 1, + anon_sym_LBRACK, + STATE(482), 1, sym_dimensions, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1543), 2, + ACTIONS(1468), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(464), 2, + STATE(433), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24121] = 8, - ACTIONS(464), 1, + [22203] = 8, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - STATE(518), 1, + STATE(483), 1, sym_dimensions, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1539), 2, + ACTIONS(1464), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(464), 2, + STATE(433), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24152] = 9, - ACTIONS(464), 1, + [22234] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - STATE(495), 1, + STATE(464), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(1190), 1, + STATE(1146), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(449), 2, + STATE(827), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24185] = 6, - ACTIONS(1514), 1, - anon_sym_LPAREN, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(607), 1, - sym_record_pattern_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1531), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1529), 7, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [24212] = 9, - ACTIONS(464), 1, + [22267] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2507), 1, + ACTIONS(2424), 1, anon_sym_LBRACK, - STATE(493), 1, + STATE(450), 1, sym_argument_list, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(1206), 1, + STATE(1151), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(446), 2, + STATE(425), 2, sym_dimensions_expr, aux_sym_array_creation_expression_repeat2, - STATE(966), 4, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24245] = 8, - ACTIONS(252), 1, + [22300] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, - sym_this, - ACTIONS(2468), 1, - sym_super, - STATE(490), 1, - sym__reserved_identifier, - STATE(919), 1, + ACTIONS(2497), 1, + anon_sym_DOT, + STATE(763), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24276] = 8, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2448), 1, - sym_identifier, - ACTIONS(2452), 1, + ACTIONS(1519), 3, + sym_underscore_pattern, sym_this, - ACTIONS(2454), 1, - sym_super, - STATE(428), 1, - sym__reserved_identifier, - STATE(919), 1, - sym_type_arguments, + sym_identifier, + ACTIONS(1521), 6, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [22327] = 9, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2408), 1, + anon_sym_DOT_DOT_DOT, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(1244), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24307] = 7, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(2406), 2, + sym_underscore_pattern, sym_identifier, - ACTIONS(2565), 1, - sym_this, - STATE(494), 1, - sym__reserved_identifier, - STATE(921), 1, - sym_type_arguments, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22360] = 9, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2502), 1, + anon_sym_PIPE, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(953), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24335] = 9, - ACTIONS(464), 1, + ACTIONS(2500), 2, + sym_underscore_pattern, + sym_identifier, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22393] = 8, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, - anon_sym_default, - ACTIONS(2569), 1, - anon_sym_SEMI, - STATE(580), 1, + ACTIONS(2504), 1, + anon_sym_LPAREN, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(1130), 1, + STATE(945), 1, sym_dimensions, - STATE(1326), 1, - sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + ACTIONS(2455), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24367] = 9, - ACTIONS(464), 1, + [22424] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(2424), 1, anon_sym_LBRACK, - ACTIONS(2513), 1, - sym_identifier, - ACTIONS(2515), 1, - sym_this, - STATE(580), 1, + STATE(450), 1, + sym_argument_list, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(1151), 1, sym_dimensions, - STATE(1080), 1, - aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(824), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(915), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24399] = 6, - STATE(859), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1285), 1, - sym_variable_declarator, + [22457] = 8, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2508), 1, + anon_sym_PIPE, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(2506), 2, sym_underscore_pattern, sym_identifier, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24425] = 8, - ACTIONS(464), 1, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22487] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(1504), 1, + anon_sym_COLON_COLON, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, + ACTIONS(2418), 1, anon_sym_DOT, - STATE(580), 1, + ACTIONS(2510), 1, + sym_identifier, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(995), 1, + STATE(769), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22519] = 8, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2512), 1, + anon_sym_DOT, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(945), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2523), 2, + ACTIONS(2455), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(945), 4, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24455] = 7, - ACTIONS(252), 1, + [22549] = 10, + ACTIONS(35), 1, + anon_sym_LBRACE, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2575), 1, - sym_this, - STATE(429), 1, - sym__reserved_identifier, - STATE(921), 1, + ACTIONS(2428), 1, + anon_sym_DOT, + ACTIONS(2453), 1, + anon_sym_LPAREN, + STATE(488), 1, + sym_block, + STATE(764), 1, sym_type_arguments, + STATE(1164), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24483] = 6, - STATE(859), 1, - sym__reserved_identifier, - STATE(1027), 1, + ACTIONS(1335), 2, + sym_underscore_pattern, + sym_identifier, + ACTIONS(1359), 2, + anon_sym_LBRACK, + anon_sym_AT, + [22583] = 7, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(1037), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2514), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22611] = 8, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(1285), 1, sym__variable_declarator_id, - STATE(1223), 1, - sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, + ACTIONS(2406), 2, sym_underscore_pattern, sym_identifier, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24509] = 5, - STATE(882), 1, - aux_sym_requires_module_directive_repeat1, - STATE(900), 1, - sym_requires_modifier, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22641] = 9, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2516), 1, + anon_sym_default, + ACTIONS(2518), 1, + anon_sym_SEMI, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(1082), 1, + sym_dimensions, + STATE(1312), 1, + sym__default_value, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22673] = 10, + ACTIONS(35), 1, + anon_sym_LBRACE, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(2428), 1, + anon_sym_DOT, + ACTIONS(2453), 1, + anon_sym_LPAREN, + STATE(534), 1, + sym_block, + STATE(764), 1, + sym_type_arguments, + STATE(1164), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2579), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(2577), 7, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, + ACTIONS(1335), 2, + sym_underscore_pattern, sym_identifier, - [24533] = 6, - STATE(859), 1, - sym__reserved_identifier, - STATE(1027), 1, - sym__variable_declarator_id, - STATE(1213), 1, - sym_variable_declarator, + ACTIONS(1359), 2, + anon_sym_LBRACK, + anon_sym_AT, + [22707] = 9, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_COLON_COLON, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_DOT, + ACTIONS(2520), 1, + sym_identifier, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24559] = 7, - ACTIONS(464), 1, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22739] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - STATE(580), 1, + ACTIONS(2432), 1, + sym_identifier, + ACTIONS(2434), 1, + sym_this, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(1111), 1, + STATE(769), 1, sym_dimensions, + STATE(1090), 1, + aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2582), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - STATE(945), 4, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24587] = 9, - ACTIONS(464), 1, + [22771] = 9, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1992), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2567), 1, + ACTIONS(2516), 1, anon_sym_default, - ACTIONS(2584), 1, + ACTIONS(2522), 1, anon_sym_SEMI, - STATE(580), 1, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(1100), 1, + STATE(1017), 1, sym_dimensions, - STATE(1367), 1, + STATE(1317), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24619] = 8, - ACTIONS(464), 1, + [22803] = 8, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(1508), 1, - anon_sym_COLON_COLON, - ACTIONS(1992), 1, + ACTIONS(2145), 1, anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_DOT, - STATE(580), 1, + ACTIONS(2524), 1, + sym_identifier, + STATE(626), 1, aux_sym_dimensions_repeat1, - STATE(752), 1, + STATE(769), 1, sym_dimensions, + STATE(972), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(945), 4, + STATE(896), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [24648] = 6, - ACTIONS(2586), 1, + [22832] = 6, + ACTIONS(2526), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2590), 1, + ACTIONS(2530), 1, anon_sym_BSLASH_LBRACE, - ACTIONS(2588), 2, + ACTIONS(2528), 2, aux_sym__multiline_string_fragment_token1, aux_sym__multiline_string_fragment_token2, - ACTIONS(2592), 2, + ACTIONS(2532), 2, aux_sym__escape_sequence_token1, sym_escape_sequence, - ACTIONS(2594), 2, + ACTIONS(2534), 2, sym_line_comment, sym_block_comment, - STATE(893), 4, + STATE(851), 4, sym__multiline_string_fragment, sym_string_interpolation, sym__escape_sequence, aux_sym__multiline_string_literal_repeat1, - [24673] = 5, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_static, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1214), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24696] = 5, - STATE(859), 1, - sym__reserved_identifier, - STATE(1372), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24719] = 11, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, - anon_sym_extends, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(372), 1, - sym_class_body, - STATE(922), 1, - sym_type_parameters, - STATE(943), 1, - sym_superclass, - STATE(1035), 1, - sym_super_interfaces, - STATE(1276), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [24754] = 4, - ACTIONS(2606), 1, - anon_sym_PIPE, - STATE(891), 1, - aux_sym_catch_type_repeat1, + [22857] = 8, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(1504), 1, + anon_sym_COLON_COLON, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_DOT, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 8, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22886] = 8, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2524), 1, sym_identifier, - [24775] = 11, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, - anon_sym_extends, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(302), 1, - sym_class_body, - STATE(923), 1, - sym_type_parameters, - STATE(941), 1, - sym_superclass, - STATE(1034), 1, - sym_super_interfaces, - STATE(1259), 1, - sym_permits, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, + STATE(956), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [24810] = 6, - ACTIONS(2590), 1, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22915] = 6, + ACTIONS(2530), 1, anon_sym_BSLASH_LBRACE, - ACTIONS(2609), 1, + ACTIONS(2536), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2588), 2, + ACTIONS(2528), 2, aux_sym__multiline_string_fragment_token1, aux_sym__multiline_string_fragment_token2, - ACTIONS(2594), 2, + ACTIONS(2534), 2, sym_line_comment, sym_block_comment, - ACTIONS(2611), 2, + ACTIONS(2538), 2, aux_sym__escape_sequence_token1, sym_escape_sequence, - STATE(896), 4, + STATE(852), 4, sym__multiline_string_fragment, sym_string_interpolation, sym__escape_sequence, aux_sym__multiline_string_literal_repeat1, - [24835] = 4, - ACTIONS(2483), 1, - anon_sym_PIPE, - STATE(891), 1, - aux_sym_catch_type_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2613), 8, - sym_underscore_pattern, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [24856] = 5, - STATE(859), 1, - sym__reserved_identifier, - STATE(1356), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2311), 2, - sym_underscore_pattern, - sym_identifier, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24879] = 6, - ACTIONS(2615), 1, + [22940] = 6, + ACTIONS(2540), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(2620), 1, + ACTIONS(2545), 1, anon_sym_BSLASH_LBRACE, - ACTIONS(2594), 2, + ACTIONS(2534), 2, sym_line_comment, sym_block_comment, - ACTIONS(2617), 2, + ACTIONS(2542), 2, aux_sym__multiline_string_fragment_token1, aux_sym__multiline_string_fragment_token2, - ACTIONS(2623), 2, + ACTIONS(2548), 2, aux_sym__escape_sequence_token1, sym_escape_sequence, - STATE(896), 4, + STATE(852), 4, sym__multiline_string_fragment, sym_string_interpolation, sym__escape_sequence, aux_sym__multiline_string_literal_repeat1, - [24904] = 4, - ACTIONS(2626), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1245), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24924] = 4, - ACTIONS(2628), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1293), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24944] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2630), 9, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_transitive, - anon_sym_static, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [24960] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2632), 9, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_transitive, - anon_sym_static, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - sym_identifier, - [24976] = 4, - ACTIONS(2634), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1120), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [24996] = 5, - ACTIONS(2636), 1, - sym_identifier, - ACTIONS(2638), 1, - sym_super, - STATE(1280), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25018] = 4, - ACTIONS(2640), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1208), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25038] = 4, - ACTIONS(2642), 1, - sym_identifier, + [22965] = 4, + ACTIONS(2497), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1116), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25058] = 4, - ACTIONS(2644), 1, + ACTIONS(1519), 3, + sym_underscore_pattern, + sym_this, sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1167), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25078] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1508), 9, + ACTIONS(1521), 6, anon_sym_RPAREN, anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_COLON_COLON, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [22986] = 11, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(1545), 1, anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(2551), 1, + anon_sym_extends, + ACTIONS(2553), 1, + anon_sym_implements, + ACTIONS(2555), 1, + anon_sym_permits, + STATE(235), 1, + sym_class_body, + STATE(860), 1, + sym_type_parameters, + STATE(880), 1, + sym_superclass, + STATE(968), 1, + sym_super_interfaces, + STATE(1199), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23021] = 11, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(1545), 1, + anon_sym_LBRACE, + ACTIONS(2551), 1, + anon_sym_extends, + ACTIONS(2553), 1, anon_sym_implements, + ACTIONS(2555), 1, anon_sym_permits, - [25094] = 8, - ACTIONS(2646), 1, + STATE(252), 1, + sym_class_body, + STATE(863), 1, + sym_type_parameters, + STATE(907), 1, + sym_superclass, + STATE(966), 1, + sym_super_interfaces, + STATE(1180), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23056] = 8, + ACTIONS(2557), 1, anon_sym_RBRACE, - ACTIONS(2648), 1, + ACTIONS(2559), 1, anon_sym_case, - ACTIONS(2650), 1, + ACTIONS(2561), 1, anon_sym_default, STATE(4), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1219), 1, + STATE(1253), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(935), 2, + STATE(868), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - STATE(958), 2, + STATE(886), 2, sym_switch_rule, aux_sym_switch_block_repeat2, - [25122] = 4, - ACTIONS(2652), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1220), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25142] = 4, - ACTIONS(2654), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(623), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(1241), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25162] = 4, - ACTIONS(2656), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1065), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25182] = 4, - ACTIONS(2658), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(484), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25202] = 4, - ACTIONS(2660), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(754), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(2662), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25222] = 4, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1230), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25242] = 4, - ACTIONS(2666), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1049), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25262] = 4, - ACTIONS(2668), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1032), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25282] = 4, - ACTIONS(2670), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1011), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25302] = 4, - ACTIONS(2672), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(1168), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25322] = 4, - ACTIONS(2674), 1, + [23084] = 7, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2510), 1, sym_identifier, + STATE(626), 1, + aux_sym_dimensions_repeat1, + STATE(769), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(1171), 2, - sym_scoped_identifier, - sym__reserved_identifier, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25342] = 4, - ACTIONS(2636), 1, - sym_identifier, - STATE(1280), 1, - sym__reserved_identifier, + STATE(896), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [23110] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25361] = 9, + ACTIONS(1504), 9, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_implements, + anon_sym_permits, + [23126] = 9, ACTIONS(19), 1, anon_sym_LT, - ACTIONS(2604), 1, + ACTIONS(2555), 1, anon_sym_permits, - ACTIONS(2676), 1, + ACTIONS(2563), 1, anon_sym_extends, - ACTIONS(2678), 1, + ACTIONS(2565), 1, anon_sym_LBRACE, - STATE(381), 1, + STATE(238), 1, sym_interface_body, - STATE(938), 1, + STATE(889), 1, sym_type_parameters, - STATE(1007), 1, + STATE(971), 1, sym_extends_interfaces, - STATE(1239), 1, + STATE(1210), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25390] = 4, - ACTIONS(2680), 1, - sym_identifier, - STATE(1270), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25409] = 9, - ACTIONS(1646), 1, + [23155] = 9, + ACTIONS(1545), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2551), 1, anon_sym_extends, - ACTIONS(2602), 1, + ACTIONS(2553), 1, anon_sym_implements, - ACTIONS(2604), 1, + ACTIONS(2555), 1, anon_sym_permits, - STATE(362), 1, + STATE(271), 1, sym_class_body, - STATE(939), 1, + STATE(895), 1, sym_superclass, - STATE(1019), 1, + STATE(958), 1, sym_super_interfaces, - STATE(1294), 1, + STATE(1191), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25438] = 9, - ACTIONS(1646), 1, + [23184] = 7, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(2428), 1, + anon_sym_DOT, + STATE(574), 1, + sym_record_pattern_body, + STATE(764), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1359), 3, + anon_sym_LBRACK, + anon_sym_AT, + sym_identifier, + [23209] = 7, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(2428), 1, + anon_sym_DOT, + ACTIONS(2453), 1, + anon_sym_LPAREN, + STATE(764), 1, + sym_type_arguments, + STATE(1132), 1, + sym_formal_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1359), 3, + anon_sym_LBRACK, + anon_sym_AT, + sym_identifier, + [23234] = 9, + ACTIONS(1545), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2551), 1, anon_sym_extends, - ACTIONS(2602), 1, + ACTIONS(2553), 1, anon_sym_implements, - ACTIONS(2604), 1, + ACTIONS(2555), 1, anon_sym_permits, - STATE(351), 1, + STATE(190), 1, sym_class_body, - STATE(954), 1, + STATE(892), 1, sym_superclass, - STATE(1016), 1, + STATE(997), 1, sym_super_interfaces, - STATE(1207), 1, + STATE(1208), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25467] = 9, + [23263] = 9, ACTIONS(19), 1, anon_sym_LT, - ACTIONS(2604), 1, + ACTIONS(2555), 1, anon_sym_permits, - ACTIONS(2676), 1, + ACTIONS(2563), 1, anon_sym_extends, - ACTIONS(2678), 1, + ACTIONS(2565), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(178), 1, sym_interface_body, - STATE(973), 1, + STATE(891), 1, sym_type_parameters, - STATE(1017), 1, + STATE(991), 1, sym_extends_interfaces, - STATE(1191), 1, + STATE(1193), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25496] = 4, - ACTIONS(2682), 1, - sym_identifier, - STATE(1222), 1, - sym__reserved_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(69), 6, - anon_sym_yield, - anon_sym_open, - anon_sym_module, - anon_sym_with, - anon_sym_sealed, - anon_sym_record, - [25515] = 2, + [23292] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2684), 7, + ACTIONS(2567), 7, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LBRACE, @@ -69640,28 +66488,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_implements, anon_sym_throws, - [25529] = 7, - ACTIONS(2686), 1, + [23306] = 5, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(2569), 1, + anon_sym_DOT, + STATE(574), 1, + sym_record_pattern_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1521), 4, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_AT, + sym_identifier, + [23326] = 5, + ACTIONS(491), 1, + anon_sym_AT, + ACTIONS(2572), 1, + sym_identifier, + STATE(1050), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(884), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [23346] = 7, + ACTIONS(2561), 1, + anon_sym_default, + ACTIONS(2574), 1, anon_sym_RBRACE, - ACTIONS(2688), 1, + ACTIONS(2576), 1, anon_sym_case, - ACTIONS(2691), 1, - anon_sym_default, STATE(4), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1322), 1, + STATE(1352), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(927), 2, + STATE(874), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - [25553] = 2, + [23370] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2694), 7, + ACTIONS(2578), 7, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LBRACE, @@ -69669,42 +66547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_implements, anon_sym_throws, - [25567] = 6, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(1004), 1, - sym_argument_list, - STATE(1085), 1, - sym_class_body, + [23384] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2696), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [25589] = 5, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2698), 1, - sym_identifier, - STATE(1227), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(978), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [25609] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2700), 7, + ACTIONS(2580), 7, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LBRACE, @@ -69712,42 +66559,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_implements, anon_sym_throws, - [25623] = 6, - ACTIONS(1321), 1, + [23398] = 6, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(1646), 1, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(1000), 1, + STATE(927), 1, sym_argument_list, - STATE(1150), 1, + STATE(1014), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2702), 3, + ACTIONS(2582), 3, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SEMI, - [25645] = 5, - ACTIONS(424), 1, + [23420] = 5, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2698), 1, + ACTIONS(2572), 1, sym_identifier, - STATE(1122), 1, + STATE(1251), 1, sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(978), 4, + STATE(884), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [25665] = 2, + [23440] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 7, + ACTIONS(2584), 7, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LBRACE, @@ -69755,28 +66602,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_implements, anon_sym_throws, - [25679] = 7, - ACTIONS(2650), 1, - anon_sym_default, - ACTIONS(2706), 1, + [23454] = 7, + ACTIONS(2586), 1, anon_sym_RBRACE, - ACTIONS(2708), 1, + ACTIONS(2588), 1, anon_sym_case, + ACTIONS(2591), 1, + anon_sym_default, STATE(4), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1322), 1, + STATE(1352), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(927), 2, + STATE(874), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - [25703] = 2, + [23478] = 6, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(923), 1, + sym_argument_list, + STATE(1033), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2594), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [23500] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 7, + ACTIONS(2596), 7, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LBRACE, @@ -69784,4064 +66647,4409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_implements, anon_sym_throws, - [25717] = 6, - ACTIONS(2712), 1, + [23514] = 6, + ACTIONS(2598), 1, + anon_sym_RBRACE, + ACTIONS(2600), 1, + anon_sym_case, + ACTIONS(2603), 1, + anon_sym_default, + STATE(1273), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(877), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [23535] = 2, + ACTIONS(2534), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2606), 6, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__multiline_string_fragment_token1, + aux_sym__multiline_string_fragment_token2, + anon_sym_BSLASH_LBRACE, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + [23548] = 6, + ACTIONS(2608), 1, anon_sym_DQUOTE, - ACTIONS(2714), 1, + ACTIONS(2610), 1, sym_string_fragment, - ACTIONS(2716), 1, + ACTIONS(2612), 1, anon_sym_BSLASH_LBRACE, - ACTIONS(2718), 1, + ACTIONS(2614), 1, sym_escape_sequence, - ACTIONS(2594), 2, + ACTIONS(2534), 2, sym_line_comment, sym_block_comment, - STATE(960), 2, + STATE(904), 2, sym_string_interpolation, aux_sym__string_literal_repeat1, - [25738] = 7, - ACTIONS(2604), 1, - anon_sym_permits, - ACTIONS(2676), 1, - anon_sym_extends, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(368), 1, - sym_interface_body, - STATE(1036), 1, - sym_extends_interfaces, - STATE(1248), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [25761] = 7, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(262), 1, - sym_class_body, - STATE(1052), 1, - sym_super_interfaces, - STATE(1279), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [25784] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2720), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [25797] = 7, - ACTIONS(1646), 1, + [23569] = 7, + ACTIONS(1545), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2553), 1, anon_sym_implements, - ACTIONS(2604), 1, + ACTIONS(2555), 1, anon_sym_permits, - STATE(352), 1, + STATE(272), 1, sym_class_body, - STATE(1018), 1, + STATE(965), 1, sym_super_interfaces, - STATE(1210), 1, + STATE(1173), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25820] = 4, - ACTIONS(424), 1, + [23592] = 4, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2722), 1, + ACTIONS(2616), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [25837] = 7, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(363), 1, - sym_class_body, - STATE(1023), 1, - sym_super_interfaces, - STATE(1184), 1, - sym_permits, + [23609] = 5, + ACTIONS(1512), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_DOT, + STATE(574), 1, + sym_record_pattern_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [25860] = 4, - ACTIONS(424), 1, + ACTIONS(1521), 3, + anon_sym_LBRACK, + anon_sym_AT, + sym_identifier, + [23628] = 4, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2724), 1, + ACTIONS(2618), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(792), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [25877] = 4, - ACTIONS(464), 1, + [23645] = 4, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2726), 1, - anon_sym_LBRACK, + ACTIONS(2620), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(949), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [25894] = 6, - ACTIONS(2165), 1, + [23662] = 6, + ACTIONS(2104), 1, anon_sym_COMMA, - ACTIONS(2169), 1, + ACTIONS(2108), 1, anon_sym_when, - STATE(981), 1, + STATE(932), 1, aux_sym_argument_list_repeat1, - STATE(1238), 1, + STATE(1190), 1, sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 2, + ACTIONS(2622), 2, anon_sym_DASH_GT, anon_sym_COLON, - [25915] = 4, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2730), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(950), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [25932] = 4, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2732), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(951), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [25949] = 4, - ACTIONS(2433), 1, - anon_sym_LBRACK, - ACTIONS(2734), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(949), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [25966] = 4, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2737), 1, - sym_identifier, + [23683] = 6, + ACTIONS(2559), 1, + anon_sym_case, + ACTIONS(2561), 1, + anon_sym_default, + ACTIONS(2574), 1, + anon_sym_RBRACE, + STATE(1273), 1, + sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(792), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [25983] = 4, - ACTIONS(424), 1, - anon_sym_AT, - ACTIONS(2739), 1, - sym_identifier, - ACTIONS(3), 2, + STATE(877), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [23704] = 6, + ACTIONS(2624), 1, + anon_sym_DQUOTE, + ACTIONS(2626), 1, + sym_string_fragment, + ACTIONS(2629), 1, + anon_sym_BSLASH_LBRACE, + ACTIONS(2632), 1, + sym_escape_sequence, + ACTIONS(2534), 2, sym_line_comment, sym_block_comment, - STATE(792), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_array_creation_expression_repeat1, - [26000] = 2, + STATE(887), 2, + sym_string_interpolation, + aux_sym__string_literal_repeat1, + [23725] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2720), 6, + ACTIONS(2635), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26013] = 2, + [23738] = 7, + ACTIONS(2555), 1, + anon_sym_permits, + ACTIONS(2563), 1, + anon_sym_extends, + ACTIONS(2565), 1, + anon_sym_LBRACE, + STATE(219), 1, + sym_interface_body, + STATE(955), 1, + sym_extends_interfaces, + STATE(1267), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23761] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 6, + ACTIONS(2637), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26026] = 7, - ACTIONS(1646), 1, + [23774] = 7, + ACTIONS(2555), 1, + anon_sym_permits, + ACTIONS(2563), 1, + anon_sym_extends, + ACTIONS(2565), 1, + anon_sym_LBRACE, + STATE(232), 1, + sym_interface_body, + STATE(962), 1, + sym_extends_interfaces, + STATE(1269), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23797] = 7, + ACTIONS(1545), 1, anon_sym_LBRACE, - ACTIONS(2602), 1, + ACTIONS(2553), 1, anon_sym_implements, - ACTIONS(2604), 1, + ACTIONS(2555), 1, anon_sym_permits, - STATE(277), 1, + STATE(244), 1, sym_class_body, - STATE(1047), 1, + STATE(983), 1, sym_super_interfaces, - STATE(1178), 1, + STATE(1174), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26049] = 2, + [23820] = 4, + ACTIONS(491), 1, + anon_sym_AT, + ACTIONS(2639), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2743), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [26062] = 6, - ACTIONS(2716), 1, - anon_sym_BSLASH_LBRACE, - ACTIONS(2745), 1, - anon_sym_DQUOTE, - ACTIONS(2747), 1, - sym_string_fragment, - ACTIONS(2749), 1, - sym_escape_sequence, - ACTIONS(2594), 2, - sym_line_comment, - sym_block_comment, - STATE(937), 2, - sym_string_interpolation, - aux_sym__string_literal_repeat1, - [26083] = 4, - ACTIONS(424), 1, + STATE(902), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [23837] = 4, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2751), 1, + ACTIONS(2641), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(944), 4, + STATE(745), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26100] = 6, - ACTIONS(2648), 1, - anon_sym_case, - ACTIONS(2650), 1, - anon_sym_default, - ACTIONS(2706), 1, - anon_sym_RBRACE, - STATE(1328), 1, - sym_switch_label, + [23854] = 7, + ACTIONS(1545), 1, + anon_sym_LBRACE, + ACTIONS(2553), 1, + anon_sym_implements, + ACTIONS(2555), 1, + anon_sym_permits, + STATE(258), 1, + sym_class_body, + STATE(975), 1, + sym_super_interfaces, + STATE(1263), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(976), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [26121] = 2, + [23877] = 4, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2643), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(919), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [23894] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 6, + ACTIONS(2645), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26134] = 6, - ACTIONS(2755), 1, - anon_sym_DQUOTE, - ACTIONS(2757), 1, - sym_string_fragment, - ACTIONS(2760), 1, - anon_sym_BSLASH_LBRACE, - ACTIONS(2763), 1, - sym_escape_sequence, - ACTIONS(2594), 2, - sym_line_comment, - sym_block_comment, - STATE(960), 2, - sym_string_interpolation, - aux_sym__string_literal_repeat1, - [26155] = 4, - ACTIONS(424), 1, + [23907] = 4, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(2766), 1, - sym_identifier, + ACTIONS(2647), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(942), 4, + STATE(919), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26172] = 4, - ACTIONS(464), 1, + [23924] = 4, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2768), 1, - anon_sym_LBRACK, + ACTIONS(2649), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(949), 4, + STATE(894), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26189] = 4, - ACTIONS(464), 1, + [23941] = 4, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(2770), 1, + ACTIONS(2651), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(949), 4, + STATE(919), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26206] = 2, + [23958] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 6, + ACTIONS(2653), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26219] = 2, + [23971] = 4, + ACTIONS(491), 1, + anon_sym_AT, + ACTIONS(2655), 1, + sym_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(745), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [23988] = 6, + ACTIONS(2657), 1, + sym_identifier, + STATE(924), 1, + aux_sym_requires_module_directive_repeat1, + STATE(1099), 1, + sym_requires_modifier, + STATE(1257), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2659), 2, + anon_sym_transitive, + anon_sym_static, + [24009] = 6, + ACTIONS(2612), 1, + anon_sym_BSLASH_LBRACE, + ACTIONS(2661), 1, + anon_sym_DQUOTE, + ACTIONS(2663), 1, + sym_string_fragment, + ACTIONS(2665), 1, + sym_escape_sequence, + ACTIONS(2534), 2, + sym_line_comment, + sym_block_comment, + STATE(887), 2, + sym_string_interpolation, + aux_sym__string_literal_repeat1, + [24030] = 2, + ACTIONS(2534), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2667), 6, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__multiline_string_fragment_token1, + aux_sym__multiline_string_fragment_token2, + anon_sym_BSLASH_LBRACE, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + [24043] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2774), 6, + ACTIONS(2645), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26232] = 4, - ACTIONS(464), 1, + [24056] = 7, + ACTIONS(1545), 1, + anon_sym_LBRACE, + ACTIONS(2553), 1, + anon_sym_implements, + ACTIONS(2555), 1, + anon_sym_permits, + STATE(198), 1, + sym_class_body, + STATE(999), 1, + sym_super_interfaces, + STATE(1213), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24079] = 4, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2776), 1, - anon_sym_LBRACK, + ACTIONS(2669), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(949), 4, + STATE(881), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26249] = 2, + [24096] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 6, + ACTIONS(2671), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26262] = 2, - ACTIONS(2594), 2, + [24109] = 2, + ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2780), 6, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - aux_sym__multiline_string_fragment_token1, - aux_sym__multiline_string_fragment_token2, - anon_sym_BSLASH_LBRACE, - aux_sym__escape_sequence_token1, - sym_escape_sequence, - [26275] = 2, + ACTIONS(2673), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [24122] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 6, + ACTIONS(2675), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26288] = 2, + [24135] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2784), 6, + ACTIONS(2677), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26301] = 2, + [24148] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 6, + ACTIONS(2679), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26314] = 2, + [24161] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2788), 6, + ACTIONS(2681), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26327] = 7, - ACTIONS(2604), 1, - anon_sym_permits, - ACTIONS(2676), 1, - anon_sym_extends, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(324), 1, - sym_interface_body, - STATE(1055), 1, - sym_extends_interfaces, - STATE(1179), 1, - sym_permits, + [24174] = 4, + ACTIONS(434), 1, + anon_sym_AT, + ACTIONS(2683), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26350] = 4, - ACTIONS(464), 1, + STATE(919), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [24191] = 4, + ACTIONS(491), 1, anon_sym_AT, - ACTIONS(2790), 1, - anon_sym_LBRACK, + ACTIONS(2685), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(949), 4, + STATE(883), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26367] = 2, + [24208] = 6, + ACTIONS(2687), 1, + sym_identifier, + STATE(903), 1, + aux_sym_requires_module_directive_repeat1, + STATE(1099), 1, + sym_requires_modifier, + STATE(1222), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2659), 2, + anon_sym_transitive, + anon_sym_static, + [24229] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2720), 6, + ACTIONS(2689), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26380] = 6, - ACTIONS(2792), 1, - anon_sym_RBRACE, - ACTIONS(2794), 1, - anon_sym_case, - ACTIONS(2797), 1, - anon_sym_default, - STATE(1328), 1, - sym_switch_label, + [24242] = 4, + ACTIONS(2377), 1, + anon_sym_LBRACK, + ACTIONS(2691), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(976), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [26401] = 2, + STATE(919), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [24259] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2800), 6, + ACTIONS(2694), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [26414] = 4, - ACTIONS(424), 1, + [24272] = 4, + ACTIONS(434), 1, anon_sym_AT, - ACTIONS(2802), 1, - sym_identifier, + ACTIONS(2696), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(792), 4, + STATE(919), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_array_creation_expression_repeat1, - [26431] = 2, - ACTIONS(2594), 2, + [24289] = 6, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(2428), 1, + anon_sym_DOT, + STATE(446), 1, + sym_argument_list, + STATE(764), 1, + sym_type_arguments, + ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2804), 6, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - aux_sym__multiline_string_fragment_token1, - aux_sym__multiline_string_fragment_token2, - anon_sym_BSLASH_LBRACE, - aux_sym__escape_sequence_token1, - sym_escape_sequence, - [26444] = 4, - STATE(1256), 1, - sym__wildcard_bounds, + [24309] = 4, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(1120), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 2, - anon_sym_GT, - anon_sym_COMMA, - ACTIONS(2808), 2, - anon_sym_extends, - sym_super, - [26460] = 4, - ACTIONS(2810), 1, + ACTIONS(2698), 3, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(981), 1, - aux_sym_argument_list_repeat1, + anon_sym_SEMI, + [24325] = 5, + ACTIONS(2700), 1, + sym_identifier, + STATE(924), 1, + aux_sym_requires_module_directive_repeat1, + STATE(1099), 1, + sym_requires_modifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2184), 3, - anon_sym_DASH_GT, - anon_sym_COLON, - anon_sym_when, - [26476] = 6, - ACTIONS(2180), 1, - anon_sym_COMMA, - ACTIONS(2182), 1, - anon_sym_when, - ACTIONS(2728), 1, - anon_sym_COLON, - STATE(986), 1, - aux_sym_argument_list_repeat1, - STATE(1238), 1, - sym_guard, + ACTIONS(2702), 2, + anon_sym_transitive, + anon_sym_static, + [24343] = 6, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_DOT, + STATE(461), 1, + sym_argument_list, + STATE(763), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26496] = 4, - ACTIONS(2813), 1, - anon_sym_COMMA, - STATE(983), 1, - aux_sym_type_list_repeat1, + [24363] = 6, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(2428), 1, + anon_sym_DOT, + STATE(447), 1, + sym_argument_list, + STATE(764), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 3, + [24383] = 4, + ACTIONS(1545), 1, anon_sym_LBRACE, + STATE(1028), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2705), 3, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_permits, - [26512] = 6, - ACTIONS(2216), 1, + [24399] = 6, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(2489), 1, + sym_identifier, + ACTIONS(2491), 1, + sym_this, + ACTIONS(2493), 1, + sym_super, + STATE(1303), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24419] = 6, + ACTIONS(2190), 1, anon_sym_SEMI, - ACTIONS(2317), 1, + ACTIONS(2265), 1, anon_sym_RBRACE, - ACTIONS(2818), 1, + ACTIONS(2707), 1, anon_sym_COMMA, - STATE(1043), 1, + STATE(967), 1, aux_sym_enum_body_repeat1, - STATE(1375), 1, + STATE(1310), 1, sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26532] = 6, - ACTIONS(252), 1, + [24439] = 5, + ACTIONS(2709), 1, + anon_sym_catch, + ACTIONS(2711), 1, + anon_sym_finally, + STATE(150), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(120), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [24457] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(493), 1, + STATE(464), 1, sym_argument_list, - STATE(715), 1, + STATE(763), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26552] = 4, - ACTIONS(2820), 1, + [24477] = 4, + ACTIONS(2713), 1, anon_sym_COMMA, - STATE(986), 1, + STATE(932), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2184), 3, - anon_sym_RPAREN, + ACTIONS(2131), 3, + anon_sym_DASH_GT, anon_sym_COLON, anon_sym_when, - [26568] = 4, - STATE(1247), 1, - sym__wildcard_bounds, + [24493] = 6, + ACTIONS(2127), 1, + anon_sym_COMMA, + ACTIONS(2129), 1, + anon_sym_when, + ACTIONS(2622), 1, + anon_sym_COLON, + STATE(943), 1, + aux_sym_argument_list_repeat1, + STATE(1190), 1, + sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 2, - anon_sym_extends, - sym_super, - ACTIONS(2823), 2, - anon_sym_GT, - anon_sym_COMMA, - [26584] = 5, - ACTIONS(2825), 1, - anon_sym_catch, - ACTIONS(2827), 1, - anon_sym_finally, - STATE(336), 1, - sym_finally_clause, + [24513] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(158), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [26602] = 6, - ACTIONS(252), 1, + ACTIONS(2495), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1337), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [24527] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(492), 1, + STATE(451), 1, sym_argument_list, - STATE(735), 1, + STATE(763), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26622] = 6, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(497), 1, - sym_argument_list, - STATE(715), 1, - sym_type_arguments, + [24547] = 4, + ACTIONS(2716), 1, + anon_sym_COMMA, + STATE(936), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26642] = 6, - ACTIONS(252), 1, + ACTIONS(2719), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_permits, + [24563] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - STATE(499), 1, - sym_argument_list, - STATE(735), 1, + ACTIONS(2475), 1, + sym_identifier, + ACTIONS(2479), 1, + sym_this, + ACTIONS(2481), 1, + sym_super, + STATE(1303), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26662] = 6, - ACTIONS(252), 1, + [24583] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2428), 1, anon_sym_DOT, - STATE(485), 1, + STATE(453), 1, sym_argument_list, - STATE(715), 1, + STATE(764), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26682] = 6, - ACTIONS(252), 1, + [24603] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2428), 1, anon_sym_DOT, - STATE(487), 1, + STATE(458), 1, sym_argument_list, - STATE(735), 1, + STATE(764), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26702] = 6, - ACTIONS(252), 1, + [24623] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2428), 1, anon_sym_DOT, - STATE(495), 1, + STATE(463), 1, sym_argument_list, - STATE(715), 1, + STATE(764), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26722] = 2, + [24643] = 6, + ACTIONS(2190), 1, + anon_sym_SEMI, + ACTIONS(2721), 1, + anon_sym_RBRACE, + ACTIONS(2723), 1, + anon_sym_COMMA, + STATE(929), 1, + aux_sym_enum_body_repeat1, + STATE(1297), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2829), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [26734] = 6, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2491), 1, - anon_sym_DOT, - STATE(496), 1, - sym_argument_list, - STATE(735), 1, - sym_type_arguments, + [24663] = 4, + STATE(1260), 1, + sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26754] = 6, - ACTIONS(252), 1, - anon_sym_LT, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(489), 1, - sym_argument_list, - STATE(715), 1, - sym_type_arguments, + ACTIONS(2725), 2, + anon_sym_GT, + anon_sym_COMMA, + ACTIONS(2727), 2, + anon_sym_extends, + sym_super, + [24679] = 4, + ACTIONS(2729), 1, + anon_sym_COMMA, + STATE(943), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26774] = 6, - ACTIONS(252), 1, + ACTIONS(2131), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_when, + [24695] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(491), 1, + STATE(450), 1, sym_argument_list, - STATE(735), 1, + STATE(763), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26794] = 3, + [24715] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2485), 2, + ACTIONS(2732), 5, anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_SEMI, - ACTIONS(1319), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [26808] = 4, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(1163), 1, - sym_class_body, + [24727] = 4, + STATE(1184), 1, + sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 3, - anon_sym_RBRACE, + ACTIONS(2727), 2, + anon_sym_extends, + sym_super, + ACTIONS(2734), 2, + anon_sym_GT, anon_sym_COMMA, - anon_sym_SEMI, - [26824] = 6, - ACTIONS(252), 1, + [24743] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(488), 1, + STATE(457), 1, sym_argument_list, - STATE(715), 1, + STATE(763), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26844] = 6, - ACTIONS(252), 1, + [24763] = 6, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(1321), 1, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2491), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(486), 1, + STATE(462), 1, sym_argument_list, - STATE(735), 1, + STATE(763), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26864] = 4, - ACTIONS(1321), 1, + [24783] = 6, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(1339), 1, anon_sym_LPAREN, - STATE(569), 1, + ACTIONS(2428), 1, + anon_sym_DOT, + STATE(466), 1, sym_argument_list, + STATE(764), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1319), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [26880] = 4, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(1141), 1, - sym_class_body, + [24803] = 3, + ACTIONS(2738), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 3, - anon_sym_RBRACE, + ACTIONS(2736), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_SEMI, - [26896] = 6, - ACTIONS(2216), 1, - anon_sym_SEMI, - ACTIONS(2835), 1, - anon_sym_RBRACE, - ACTIONS(2837), 1, - anon_sym_COMMA, - STATE(984), 1, - aux_sym_enum_body_repeat1, - STATE(1368), 1, - sym_enum_body_declarations, + [24816] = 4, + ACTIONS(2742), 1, + anon_sym_extends, + STATE(1142), 1, + sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26916] = 4, - ACTIONS(252), 1, - anon_sym_LT, - STATE(1202), 1, - sym_type_arguments, + ACTIONS(2740), 2, + anon_sym_GT, + anon_sym_COMMA, + [24831] = 4, + ACTIONS(2738), 1, + anon_sym_EQ, + ACTIONS(2744), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2839), 2, - anon_sym_new, - sym_identifier, - [26931] = 5, - ACTIONS(2604), 1, - anon_sym_permits, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(370), 1, - sym_interface_body, - STATE(1290), 1, - sym_permits, + ACTIONS(2736), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [24846] = 4, + ACTIONS(2502), 1, + anon_sym_PIPE, + STATE(992), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [26948] = 4, - ACTIONS(2841), 1, - anon_sym_EQ, - ACTIONS(2845), 1, - anon_sym_COLON, + ACTIONS(2746), 2, + sym_underscore_pattern, + sym_identifier, + [24861] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, + ACTIONS(2748), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_SEMI, - [26963] = 4, - ACTIONS(2841), 1, - anon_sym_EQ, - ACTIONS(2847), 1, - anon_sym_COLON, + [24872] = 5, + ACTIONS(2555), 1, + anon_sym_permits, + ACTIONS(2565), 1, + anon_sym_LBRACE, + STATE(147), 1, + sym_interface_body, + STATE(1145), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [26978] = 4, - ACTIONS(2851), 1, + [24889] = 4, + ACTIONS(2752), 1, anon_sym_throws, - STATE(1177), 1, + STATE(1216), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2849), 2, + ACTIONS(2750), 2, anon_sym_LBRACE, anon_sym_SEMI, - [26993] = 5, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(2853), 1, + [24904] = 4, + ACTIONS(2754), 1, + anon_sym_AMP, + STATE(974), 1, + aux_sym_type_bound_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2756), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_SEMI, - STATE(1096), 1, - aux_sym_provides_module_directive_repeat1, + [24919] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACE, + ACTIONS(2555), 1, + anon_sym_permits, + STATE(259), 1, + sym_class_body, + STATE(1266), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27010] = 2, + [24936] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2857), 4, + ACTIONS(2758), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_SEMI, - [27021] = 5, - ACTIONS(2851), 1, - anon_sym_throws, - ACTIONS(2859), 1, + [24947] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(524), 1, - sym_constructor_body, - STATE(1254), 1, - sym_throws, + ACTIONS(2553), 1, + anon_sym_implements, + STATE(264), 1, + sym_class_body, + STATE(1245), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27038] = 4, - ACTIONS(2861), 1, + [24964] = 4, + ACTIONS(2760), 1, anon_sym_COMMA, - STATE(1044), 1, + STATE(936), 1, aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 2, + ACTIONS(2762), 2, anon_sym_LBRACE, + anon_sym_SEMI, + [24979] = 5, + ACTIONS(2555), 1, anon_sym_permits, - [27053] = 5, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(2865), 1, - anon_sym_RPAREN, - ACTIONS(2867), 1, + ACTIONS(2565), 1, + anon_sym_LBRACE, + STATE(269), 1, + sym_interface_body, + STATE(1254), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24996] = 5, + ACTIONS(240), 1, + anon_sym_LT, + ACTIONS(2764), 1, + sym_identifier, + ACTIONS(2766), 1, + sym_this, + STATE(1331), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25013] = 4, + ACTIONS(2768), 1, anon_sym_AMP, - STATE(1131), 1, - aux_sym_cast_expression_repeat1, + STATE(964), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27070] = 5, - ACTIONS(1646), 1, + ACTIONS(2771), 2, + anon_sym_GT, + anon_sym_COMMA, + [25028] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2555), 1, anon_sym_permits, - STATE(280), 1, + STATE(276), 1, sym_class_body, - STATE(1180), 1, + STATE(1137), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27087] = 5, - ACTIONS(2604), 1, - anon_sym_permits, - ACTIONS(2678), 1, + [25045] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(328), 1, - sym_interface_body, - STATE(1266), 1, + ACTIONS(2555), 1, + anon_sym_permits, + STATE(143), 1, + sym_class_body, + STATE(1226), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27104] = 5, - ACTIONS(1646), 1, + [25062] = 4, + ACTIONS(2775), 1, + anon_sym_COMMA, + STATE(967), 1, + aux_sym_enum_body_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2773), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [25077] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2555), 1, anon_sym_permits, - STATE(284), 1, + STATE(273), 1, sym_class_body, - STATE(1199), 1, + STATE(1264), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27121] = 5, - ACTIONS(1646), 1, + [25094] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(263), 1, + ACTIONS(2553), 1, + anon_sym_implements, + STATE(200), 1, sym_class_body, - STATE(1281), 1, - sym_permits, + STATE(1258), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27138] = 5, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2869), 1, + [25111] = 4, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1221), 1, + sym_variable_declarator, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + [25126] = 5, + ACTIONS(2555), 1, + anon_sym_permits, + ACTIONS(2565), 1, anon_sym_LBRACE, - STATE(343), 1, - sym_enum_body, - STATE(1268), 1, - sym_super_interfaces, + STATE(185), 1, + sym_interface_body, + STATE(1167), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27155] = 5, - ACTIONS(19), 1, - anon_sym_LT, - ACTIONS(2489), 1, - anon_sym_LPAREN, - STATE(1028), 1, - sym_formal_parameters, - STATE(1275), 1, - sym_type_parameters, + [25143] = 4, + ACTIONS(2752), 1, + anon_sym_throws, + STATE(1220), 1, + sym_throws, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2778), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [25158] = 4, + ACTIONS(2760), 1, + anon_sym_COMMA, + STATE(961), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27172] = 4, - ACTIONS(2871), 1, + ACTIONS(2780), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [25173] = 4, + ACTIONS(2754), 1, anon_sym_AMP, - STATE(1039), 1, + STATE(964), 1, aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2873), 2, + ACTIONS(2782), 2, anon_sym_GT, anon_sym_COMMA, - [27187] = 5, - ACTIONS(1646), 1, + [25188] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2555), 1, anon_sym_permits, - STATE(265), 1, + STATE(169), 1, sym_class_body, - STATE(1283), 1, + STATE(1133), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27204] = 5, - ACTIONS(2602), 1, - anon_sym_implements, - ACTIONS(2869), 1, + [25205] = 4, + ACTIONS(2742), 1, + anon_sym_extends, + STATE(1134), 1, + sym_type_bound, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2784), 2, + anon_sym_GT, + anon_sym_COMMA, + [25220] = 5, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, + ACTIONS(2786), 1, + anon_sym_RPAREN, + ACTIONS(2788), 1, + anon_sym_AMP, + STATE(1084), 1, + aux_sym_cast_expression_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25237] = 4, + ACTIONS(2752), 1, + anon_sym_throws, + STATE(1138), 1, + sym_throws, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2790), 2, anon_sym_LBRACE, - STATE(379), 1, - sym_enum_body, - STATE(1187), 1, - sym_super_interfaces, + anon_sym_SEMI, + [25252] = 5, + ACTIONS(35), 1, + anon_sym_LBRACE, + ACTIONS(2792), 1, + anon_sym_LPAREN, + STATE(930), 1, + sym_block, + STATE(1149), 1, + sym_resource_specification, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27221] = 5, - ACTIONS(19), 1, + [25269] = 5, + ACTIONS(240), 1, anon_sym_LT, - ACTIONS(2489), 1, - anon_sym_LPAREN, - STATE(1048), 1, - sym_formal_parameters, - STATE(1215), 1, - sym_type_parameters, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2796), 1, + sym_this, + STATE(1331), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27238] = 4, - ACTIONS(2877), 1, - anon_sym_extends, - STATE(1267), 1, - sym_type_bound, + [25286] = 5, + ACTIONS(2752), 1, + anon_sym_throws, + ACTIONS(2798), 1, + anon_sym_LBRACE, + STATE(536), 1, + sym_constructor_body, + STATE(1158), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2875), 2, - anon_sym_GT, + [25303] = 4, + ACTIONS(2760), 1, anon_sym_COMMA, - [27253] = 3, - ACTIONS(2841), 1, - anon_sym_EQ, + STATE(936), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [27266] = 5, - ACTIONS(1646), 1, + ACTIONS(2800), 2, anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_implements, - STATE(385), 1, + anon_sym_permits, + [25318] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACE, + ACTIONS(2555), 1, + anon_sym_permits, + STATE(156), 1, sym_class_body, - STATE(1186), 1, + STATE(1238), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25335] = 5, + ACTIONS(2553), 1, + anon_sym_implements, + ACTIONS(2802), 1, + anon_sym_LBRACE, + STATE(163), 1, + sym_enum_body, + STATE(1182), 1, sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27283] = 2, + [25352] = 5, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(2453), 1, + anon_sym_LPAREN, + STATE(987), 1, + sym_formal_parameters, + STATE(1183), 1, + sym_type_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2879), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [27294] = 4, - ACTIONS(2169), 1, + [25369] = 4, + ACTIONS(2108), 1, anon_sym_when, - STATE(1273), 1, + STATE(1177), 1, sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 2, + ACTIONS(2102), 2, anon_sym_DASH_GT, anon_sym_COLON, - [27309] = 4, - ACTIONS(2841), 1, - anon_sym_EQ, - ACTIONS(2881), 1, - anon_sym_COLON, + [25384] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACE, + ACTIONS(2553), 1, + anon_sym_implements, + STATE(229), 1, + sym_class_body, + STATE(1219), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [27324] = 5, - ACTIONS(1640), 1, + [25401] = 4, + ACTIONS(240), 1, + anon_sym_LT, + STATE(1206), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2804), 2, + anon_sym_new, + sym_identifier, + [25416] = 5, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, + ACTIONS(2806), 1, anon_sym_DOT, - ACTIONS(2883), 1, - anon_sym_COMMA, - ACTIONS(2885), 1, - anon_sym_SEMI, - STATE(1090), 1, - aux_sym_exports_module_directive_repeat1, + STATE(1289), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27341] = 3, - ACTIONS(2887), 1, + [25433] = 3, + ACTIONS(2808), 1, sym_string_fragment, - ACTIONS(2594), 2, + ACTIONS(2534), 2, sym_line_comment, sym_block_comment, - ACTIONS(2780), 3, + ACTIONS(2606), 3, anon_sym_DQUOTE, anon_sym_BSLASH_LBRACE, sym_escape_sequence, - [27354] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(353), 1, - sym_class_body, - STATE(1176), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [27371] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(364), 1, - sym_class_body, - STATE(1274), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [27388] = 5, - ACTIONS(2604), 1, + [25446] = 5, + ACTIONS(2555), 1, anon_sym_permits, - ACTIONS(2678), 1, + ACTIONS(2565), 1, anon_sym_LBRACE, - STATE(271), 1, + STATE(234), 1, sym_interface_body, - STATE(1289), 1, + STATE(1143), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27405] = 4, - ACTIONS(2861), 1, - anon_sym_COMMA, - STATE(983), 1, - aux_sym_type_list_repeat1, + [25463] = 4, + ACTIONS(2810), 1, + anon_sym_PIPE, + STATE(992), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2889), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [27420] = 4, - ACTIONS(2851), 1, + ACTIONS(2506), 2, + sym_underscore_pattern, + sym_identifier, + [25478] = 5, + ACTIONS(2752), 1, anon_sym_throws, - STATE(1181), 1, - sym_throws, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2891), 2, + ACTIONS(2798), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [27435] = 4, - ACTIONS(2893), 1, - anon_sym_AMP, - STATE(1039), 1, - aux_sym_type_bound_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2896), 2, - anon_sym_GT, - anon_sym_COMMA, - [27450] = 2, + STATE(550), 1, + sym_constructor_body, + STATE(1168), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [27461] = 2, + [25495] = 4, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1235), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2900), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [27472] = 4, - ACTIONS(2861), 1, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + [25510] = 4, + ACTIONS(2760), 1, anon_sym_COMMA, - STATE(1037), 1, + STATE(982), 1, aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 2, + ACTIONS(2813), 2, anon_sym_LBRACE, - anon_sym_SEMI, - [27487] = 4, - ACTIONS(2906), 1, - anon_sym_COMMA, - STATE(1043), 1, - aux_sym_enum_body_repeat1, + anon_sym_permits, + [25525] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [27502] = 4, - ACTIONS(2861), 1, + ACTIONS(2719), 4, anon_sym_COMMA, - STATE(983), 1, - aux_sym_type_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2909), 2, anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_permits, - [27517] = 5, - ACTIONS(2911), 1, - anon_sym_LPAREN, - ACTIONS(2913), 1, + [25536] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(988), 1, - sym_block, - STATE(1189), 1, - sym_resource_specification, + ACTIONS(2555), 1, + anon_sym_permits, + STATE(245), 1, + sym_class_body, + STATE(1176), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27534] = 4, - ACTIONS(2851), 1, - anon_sym_throws, - STATE(1193), 1, - sym_throws, + [25553] = 5, + ACTIONS(1545), 1, + anon_sym_LBRACE, + ACTIONS(2553), 1, + anon_sym_implements, + STATE(144), 1, + sym_class_body, + STATE(1140), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2915), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [27549] = 5, - ACTIONS(1646), 1, + [25570] = 5, + ACTIONS(1545), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2555), 1, anon_sym_permits, - STATE(375), 1, + STATE(247), 1, sym_class_body, - STATE(1257), 1, + STATE(1178), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27566] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_implements, - STATE(367), 1, - sym_class_body, - STATE(1244), 1, - sym_super_interfaces, + [25587] = 4, + ACTIONS(2738), 1, + anon_sym_EQ, + ACTIONS(2815), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27583] = 5, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(2883), 1, + ACTIONS(2736), 2, anon_sym_COMMA, - ACTIONS(2917), 1, anon_sym_SEMI, - STATE(1093), 1, - aux_sym_exports_module_directive_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [27600] = 4, - ACTIONS(2871), 1, - anon_sym_AMP, - STATE(1022), 1, - aux_sym_type_bound_repeat1, + [25602] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2919), 2, - anon_sym_GT, + ACTIONS(2817), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COMMA, - [27615] = 5, - ACTIONS(2851), 1, - anon_sym_throws, - ACTIONS(2859), 1, - anon_sym_LBRACE, - STATE(536), 1, - sym_constructor_body, - STATE(1233), 1, - sym_throws, + anon_sym_SEMI, + [25613] = 4, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1162), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27632] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2604), 1, - anon_sym_permits, - STATE(286), 1, - sym_class_body, - STATE(1226), 1, - sym_permits, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + [25628] = 5, + ACTIONS(19), 1, + anon_sym_LT, + ACTIONS(2453), 1, + anon_sym_LPAREN, + STATE(969), 1, + sym_formal_parameters, + STATE(1205), 1, + sym_type_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27649] = 2, + [25645] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 4, + ACTIONS(2819), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_permits, - [27660] = 4, - ACTIONS(2877), 1, - anon_sym_extends, - STATE(1234), 1, - sym_type_bound, + [25656] = 5, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(2821), 1, + anon_sym_COMMA, + ACTIONS(2823), 1, + anon_sym_SEMI, + STATE(1066), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2921), 2, - anon_sym_GT, + [25673] = 5, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(2821), 1, anon_sym_COMMA, - [27675] = 5, - ACTIONS(2604), 1, - anon_sym_permits, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(360), 1, - sym_interface_body, - STATE(1204), 1, - sym_permits, + ACTIONS(2825), 1, + anon_sym_SEMI, + STATE(1070), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27692] = 5, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(2867), 1, - anon_sym_AMP, - ACTIONS(2923), 1, - anon_sym_RPAREN, - STATE(1172), 1, - aux_sym_cast_expression_repeat1, + [25690] = 5, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(2827), 1, + anon_sym_COMMA, + ACTIONS(2829), 1, + anon_sym_SEMI, + STATE(1075), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27709] = 5, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(2925), 1, - anon_sym_DOT, - STATE(1351), 1, - sym_argument_list, + [25707] = 5, + ACTIONS(2553), 1, + anon_sym_implements, + ACTIONS(2802), 1, + anon_sym_LBRACE, + STATE(236), 1, + sym_enum_body, + STATE(1203), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27726] = 4, - ACTIONS(2841), 1, + [25724] = 4, + ACTIONS(2738), 1, anon_sym_EQ, - ACTIONS(2927), 1, + ACTIONS(2831), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, + ACTIONS(2736), 2, anon_sym_COMMA, anon_sym_SEMI, - [27741] = 4, - ACTIONS(2841), 1, + [25739] = 4, + ACTIONS(2738), 1, anon_sym_EQ, - ACTIONS(2929), 1, + ACTIONS(2833), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, + ACTIONS(2736), 2, anon_sym_COMMA, anon_sym_SEMI, - [27756] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_implements, - STATE(348), 1, - sym_class_body, - STATE(1258), 1, - sym_super_interfaces, + [25754] = 4, + ACTIONS(2738), 1, + anon_sym_EQ, + ACTIONS(2835), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27773] = 4, - ACTIONS(2841), 1, + ACTIONS(2736), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [25769] = 4, + ACTIONS(2738), 1, anon_sym_EQ, - ACTIONS(2931), 1, + ACTIONS(2837), 1, anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 2, + ACTIONS(2736), 2, anon_sym_COMMA, anon_sym_SEMI, - [27788] = 5, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(2602), 1, - anon_sym_implements, - STATE(268), 1, - sym_class_body, - STATE(1286), 1, - sym_super_interfaces, + [25784] = 5, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, + ACTIONS(2788), 1, + anon_sym_AMP, + ACTIONS(2839), 1, + anon_sym_RPAREN, + STATE(1093), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27805] = 4, - ACTIONS(2194), 1, + [25801] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2841), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2933), 1, anon_sym_SEMI, - STATE(1151), 1, - aux_sym_for_statement_repeat1, + [25811] = 3, + ACTIONS(1531), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27819] = 4, - ACTIONS(2935), 1, + ACTIONS(2843), 2, anon_sym_COMMA, - ACTIONS(2937), 1, anon_sym_SEMI, - STATE(1125), 1, - aux_sym__variable_declarator_list_repeat1, + [25823] = 4, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(2848), 1, + anon_sym_SEMI, + STATE(1016), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27833] = 4, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(2939), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_module_body, + [25837] = 4, + ACTIONS(2516), 1, + anon_sym_default, + ACTIONS(2850), 1, + anon_sym_SEMI, + STATE(1272), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27847] = 4, - ACTIONS(1626), 1, + [25851] = 4, + ACTIONS(2139), 1, + anon_sym_COMMA, + ACTIONS(2852), 1, anon_sym_RPAREN, - ACTIONS(2941), 1, + STATE(1081), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25865] = 4, + ACTIONS(2190), 1, + anon_sym_SEMI, + ACTIONS(2721), 1, + anon_sym_RBRACE, + STATE(1297), 1, + sym_enum_body_declarations, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25879] = 4, + ACTIONS(519), 1, + anon_sym_RBRACE, + ACTIONS(2854), 1, anon_sym_COMMA, - STATE(1078), 1, - aux_sym_formal_parameters_repeat1, + STATE(1112), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27861] = 4, - ACTIONS(1321), 1, + [25893] = 4, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(489), 1, + STATE(462), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27875] = 4, - ACTIONS(2943), 1, + [25907] = 4, + ACTIONS(2856), 1, + anon_sym_GT, + ACTIONS(2858), 1, + anon_sym_COMMA, + STATE(1047), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25921] = 4, + ACTIONS(2860), 1, anon_sym_RPAREN, - ACTIONS(2945), 1, + ACTIONS(2862), 1, anon_sym_COMMA, - STATE(1068), 1, - aux_sym_inferred_parameters_repeat1, + STATE(1023), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27889] = 4, - ACTIONS(2948), 1, + [25935] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2771), 3, + anon_sym_AMP, + anon_sym_GT, + anon_sym_COMMA, + [25945] = 4, + ACTIONS(2865), 1, anon_sym_RPAREN, - ACTIONS(2950), 1, + ACTIONS(2867), 1, anon_sym_AMP, - STATE(1069), 1, + STATE(1025), 1, aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27903] = 4, - ACTIONS(2953), 1, - anon_sym_RPAREN, - ACTIONS(2955), 1, + [25959] = 4, + ACTIONS(2127), 1, anon_sym_COMMA, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2870), 1, + anon_sym_RPAREN, + STATE(943), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27917] = 4, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2958), 1, - anon_sym_DOT, - STATE(1364), 1, - sym_argument_list, + [25973] = 4, + ACTIONS(2872), 1, + anon_sym_GT, + ACTIONS(2874), 1, + anon_sym_COMMA, + STATE(1074), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27931] = 2, + [25987] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2896), 3, - anon_sym_AMP, - anon_sym_GT, - anon_sym_COMMA, - [27941] = 4, - ACTIONS(536), 1, + ACTIONS(2876), 3, anon_sym_RBRACE, - ACTIONS(2960), 1, anon_sym_COMMA, - STATE(1174), 1, - aux_sym_array_initializer_repeat1, + anon_sym_SEMI, + [25997] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27955] = 4, - ACTIONS(2962), 1, - sym_identifier, - ACTIONS(2965), 1, - sym_this, - STATE(1074), 1, - aux_sym_receiver_parameter_repeat1, + ACTIONS(2773), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [26007] = 4, + ACTIONS(2878), 1, + anon_sym_RPAREN, + ACTIONS(2880), 1, + anon_sym_COMMA, + STATE(1131), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27969] = 4, - ACTIONS(1321), 1, + [26021] = 4, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(488), 1, + STATE(450), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27983] = 4, - ACTIONS(2208), 1, + [26035] = 4, + ACTIONS(523), 1, + anon_sym_RBRACE, + ACTIONS(2882), 1, anon_sym_COMMA, - ACTIONS(2967), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + STATE(1056), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [27997] = 4, - ACTIONS(2969), 1, - anon_sym_GT, - ACTIONS(2971), 1, - anon_sym_COMMA, - STATE(1082), 1, - aux_sym_type_parameters_repeat1, + [26049] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28011] = 4, - ACTIONS(2973), 1, - anon_sym_RPAREN, - ACTIONS(2975), 1, + ACTIONS(2884), 3, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1078), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [26059] = 4, + ACTIONS(2139), 1, + anon_sym_COMMA, + ACTIONS(2886), 1, + anon_sym_RPAREN, + STATE(1081), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28025] = 4, - ACTIONS(2941), 1, + [26073] = 4, + ACTIONS(2141), 1, anon_sym_COMMA, - ACTIONS(2978), 1, - anon_sym_RPAREN, - STATE(1137), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2888), 1, + anon_sym_SEMI, + STATE(1089), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28039] = 4, - ACTIONS(2513), 1, - sym_identifier, - ACTIONS(2980), 1, - sym_this, - STATE(1074), 1, - aux_sym_receiver_parameter_repeat1, + [26087] = 4, + ACTIONS(2139), 1, + anon_sym_COMMA, + ACTIONS(2890), 1, + anon_sym_RPAREN, + STATE(1081), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28053] = 4, - ACTIONS(2982), 1, - sym_identifier, - ACTIONS(2984), 1, - anon_sym_STAR, - STATE(1346), 1, - sym_asterisk, + [26101] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28067] = 4, - ACTIONS(2986), 1, - anon_sym_GT, - ACTIONS(2988), 1, + ACTIONS(2892), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + [26111] = 4, + ACTIONS(2894), 1, anon_sym_COMMA, - STATE(1082), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2897), 1, + anon_sym_SEMI, + STATE(1038), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28081] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2991), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + [26125] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28095] = 4, - ACTIONS(2208), 1, + ACTIONS(2152), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2993), 1, + anon_sym_SEMI, + [26135] = 4, + ACTIONS(1187), 1, anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2899), 1, + anon_sym_SEMI, + STATE(1077), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28109] = 2, + [26149] = 4, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_LBRACE, + STATE(221), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2995), 3, - anon_sym_RBRACE, + [26163] = 4, + ACTIONS(2903), 1, anon_sym_COMMA, + ACTIONS(2905), 1, anon_sym_SEMI, - [28119] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(2997), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + STATE(1038), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28133] = 4, - ACTIONS(2999), 1, - anon_sym_GT, - ACTIONS(3001), 1, + [26177] = 4, + ACTIONS(2880), 1, anon_sym_COMMA, - STATE(1087), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2907), 1, + anon_sym_RPAREN, + STATE(1086), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28147] = 4, - ACTIONS(3004), 1, - anon_sym_GT, - ACTIONS(3006), 1, - anon_sym_COMMA, - STATE(1087), 1, - aux_sym_type_arguments_repeat1, + [26191] = 4, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_DOT, + STATE(464), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28161] = 4, - ACTIONS(3008), 1, - anon_sym_RBRACE, - ACTIONS(3010), 1, + [26205] = 4, + ACTIONS(2909), 1, + anon_sym_RPAREN, + ACTIONS(2911), 1, anon_sym_COMMA, - STATE(1129), 1, - aux_sym_element_value_array_initializer_repeat1, + STATE(1130), 1, + aux_sym_record_pattern_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28175] = 4, - ACTIONS(2883), 1, + [26219] = 4, + ACTIONS(2858), 1, anon_sym_COMMA, - ACTIONS(3012), 1, - anon_sym_SEMI, - STATE(1118), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2913), 1, + anon_sym_GT, + STATE(1022), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28189] = 2, + [26233] = 4, + ACTIONS(2915), 1, + anon_sym_GT, + ACTIONS(2917), 1, + anon_sym_COMMA, + STATE(1047), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 3, - anon_sym_DASH_GT, - anon_sym_COLON, - anon_sym_when, - [28199] = 2, + [26247] = 3, + STATE(1286), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3016), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [28209] = 4, - ACTIONS(2883), 1, - anon_sym_COMMA, - ACTIONS(3018), 1, - anon_sym_SEMI, - STATE(1118), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2406), 2, + sym_underscore_pattern, + sym_identifier, + [26259] = 4, + ACTIONS(1667), 1, + anon_sym_LBRACK, + ACTIONS(1669), 1, + anon_sym_DOT, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28223] = 4, - ACTIONS(3020), 1, - anon_sym_RPAREN, - ACTIONS(3022), 1, + [26273] = 4, + ACTIONS(2874), 1, anon_sym_COMMA, - STATE(1133), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2920), 1, + anon_sym_GT, + STATE(1027), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28237] = 4, - ACTIONS(3006), 1, + [26287] = 4, + ACTIONS(2164), 1, + anon_sym_RBRACE, + ACTIONS(2166), 1, anon_sym_COMMA, - ACTIONS(3024), 1, - anon_sym_GT, - STATE(1098), 1, - aux_sym_type_arguments_repeat1, + STATE(1032), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28251] = 4, - ACTIONS(2853), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, + [26301] = 4, + ACTIONS(2922), 1, + anon_sym_RPAREN, + ACTIONS(2924), 1, anon_sym_SEMI, - STATE(1124), 1, - aux_sym_provides_module_directive_repeat1, + STATE(1040), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28265] = 4, - ACTIONS(35), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_SEMI, - STATE(390), 1, - sym_block, + [26315] = 4, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(2426), 1, + anon_sym_DOT, + STATE(451), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28279] = 4, - ACTIONS(3006), 1, + [26329] = 4, + ACTIONS(2858), 1, anon_sym_COMMA, - ACTIONS(3030), 1, + ACTIONS(2926), 1, anon_sym_GT, - STATE(1087), 1, + STATE(1055), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28293] = 4, - ACTIONS(3006), 1, + [26343] = 4, + ACTIONS(2858), 1, anon_sym_COMMA, - ACTIONS(3032), 1, + ACTIONS(2928), 1, anon_sym_GT, - STATE(1088), 1, + STATE(1047), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28307] = 4, - ACTIONS(2567), 1, - anon_sym_default, - ACTIONS(3034), 1, - anon_sym_SEMI, - STATE(1335), 1, - sym__default_value, + [26357] = 4, + ACTIONS(2259), 1, + anon_sym_RBRACE, + ACTIONS(2930), 1, + anon_sym_COMMA, + STATE(1056), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28321] = 4, - ACTIONS(3022), 1, - anon_sym_COMMA, - ACTIONS(3036), 1, + [26371] = 4, + ACTIONS(2933), 1, anon_sym_RPAREN, - STATE(1103), 1, + ACTIONS(2935), 1, + anon_sym_COMMA, + STATE(1059), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28335] = 4, - ACTIONS(2163), 1, + [26385] = 4, + ACTIONS(2102), 1, anon_sym_COLON, - ACTIONS(2182), 1, + ACTIONS(2129), 1, anon_sym_when, - STATE(1273), 1, + STATE(1177), 1, sym_guard, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28349] = 4, - ACTIONS(3022), 1, + [26399] = 4, + ACTIONS(2935), 1, anon_sym_COMMA, - ACTIONS(3038), 1, + ACTIONS(2937), 1, anon_sym_RPAREN, - STATE(1133), 1, + STATE(1023), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28363] = 4, - ACTIONS(1321), 1, + [26413] = 4, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(497), 1, + STATE(457), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28377] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(3040), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + [26427] = 4, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_LBRACE, + STATE(159), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28391] = 4, - ACTIONS(1321), 1, + [26441] = 4, + ACTIONS(1339), 1, anon_sym_LPAREN, - ACTIONS(2509), 1, + ACTIONS(2426), 1, anon_sym_DOT, - STATE(485), 1, + STATE(461), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28405] = 4, - ACTIONS(2228), 1, - anon_sym_RBRACE, - ACTIONS(2230), 1, - anon_sym_COMMA, - STATE(1073), 1, - aux_sym_array_initializer_repeat1, + [26455] = 4, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(2901), 1, + anon_sym_LBRACE, + STATE(224), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28419] = 2, + [26469] = 4, + ACTIONS(2939), 1, + sym_identifier, + ACTIONS(2942), 1, + sym_this, + STATE(1064), 1, + aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3042), 3, - anon_sym_LBRACE, - anon_sym_implements, - anon_sym_permits, - [28429] = 4, - ACTIONS(2941), 1, + [26483] = 4, + ACTIONS(2944), 1, + sym_identifier, + ACTIONS(2946), 1, + anon_sym_STAR, + STATE(1307), 1, + sym_asterisk, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26497] = 4, + ACTIONS(2821), 1, anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_RPAREN, - STATE(1066), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2948), 1, + anon_sym_SEMI, + STATE(1129), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28443] = 4, - ACTIONS(2208), 1, + [26511] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3046), 1, + ACTIONS(2950), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28457] = 2, + [26525] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3048), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [28467] = 4, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(2939), 1, + ACTIONS(2952), 3, anon_sym_LBRACE, - STATE(340), 1, - sym_module_body, + anon_sym_implements, + anon_sym_permits, + [26535] = 4, + ACTIONS(2935), 1, + anon_sym_COMMA, + ACTIONS(2954), 1, + anon_sym_RPAREN, + STATE(1072), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28481] = 4, - ACTIONS(2208), 1, + [26549] = 4, + ACTIONS(2821), 1, anon_sym_COMMA, - ACTIONS(3050), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2956), 1, + anon_sym_SEMI, + STATE(1129), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28495] = 4, - ACTIONS(3022), 1, + [26563] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2958), 3, + anon_sym_DASH_GT, + anon_sym_COLON, + anon_sym_when, + [26573] = 4, + ACTIONS(2935), 1, anon_sym_COMMA, - ACTIONS(3052), 1, + ACTIONS(2960), 1, anon_sym_RPAREN, - STATE(1115), 1, + STATE(1023), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28509] = 4, - ACTIONS(3022), 1, + [26587] = 4, + ACTIONS(1368), 1, anon_sym_COMMA, - ACTIONS(3054), 1, + ACTIONS(2962), 1, anon_sym_RPAREN, - STATE(1133), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1080), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28523] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, + [26601] = 4, + ACTIONS(2964), 1, + anon_sym_GT, + ACTIONS(2966), 1, + anon_sym_COMMA, + STATE(1074), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3056), 2, + [26615] = 4, + ACTIONS(2827), 1, anon_sym_COMMA, + ACTIONS(2969), 1, anon_sym_SEMI, - [28535] = 4, - ACTIONS(3058), 1, - anon_sym_RBRACE, - ACTIONS(3060), 1, - anon_sym_COMMA, - STATE(1117), 1, - aux_sym_element_value_array_initializer_repeat1, + STATE(1016), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28549] = 4, - ACTIONS(3063), 1, + [26629] = 4, + ACTIONS(2935), 1, anon_sym_COMMA, - ACTIONS(3066), 1, - anon_sym_SEMI, - STATE(1118), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2971), 1, + anon_sym_RPAREN, + STATE(1097), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28563] = 4, - ACTIONS(657), 1, + [26643] = 4, + ACTIONS(2973), 1, anon_sym_RPAREN, - ACTIONS(3068), 1, + ACTIONS(2975), 1, anon_sym_SEMI, - STATE(1173), 1, + STATE(1077), 1, aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28577] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, + [26657] = 3, + STATE(1337), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3070), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [28589] = 4, - ACTIONS(2513), 1, + ACTIONS(2406), 2, + sym_underscore_pattern, sym_identifier, - ACTIONS(2515), 1, - sym_this, - STATE(1074), 1, - aux_sym_receiver_parameter_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [28603] = 4, - ACTIONS(2971), 1, - anon_sym_COMMA, - ACTIONS(3072), 1, - anon_sym_GT, - STATE(1077), 1, - aux_sym_type_parameters_repeat1, + [26669] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28617] = 4, - ACTIONS(3074), 1, + ACTIONS(2978), 3, + anon_sym_DASH_GT, + anon_sym_COLON, + anon_sym_when, + [26679] = 4, + ACTIONS(2980), 1, anon_sym_RPAREN, - ACTIONS(3076), 1, + ACTIONS(2982), 1, anon_sym_COMMA, - STATE(1123), 1, - aux_sym_record_pattern_body_repeat1, + STATE(1080), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28631] = 4, - ACTIONS(3079), 1, + [26693] = 4, + ACTIONS(2985), 1, + anon_sym_RPAREN, + ACTIONS(2987), 1, anon_sym_COMMA, - ACTIONS(3082), 1, - anon_sym_SEMI, - STATE(1124), 1, - aux_sym_provides_module_directive_repeat1, + STATE(1081), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28645] = 4, - ACTIONS(3084), 1, - anon_sym_COMMA, - ACTIONS(3087), 1, + [26707] = 4, + ACTIONS(2516), 1, + anon_sym_default, + ACTIONS(2990), 1, anon_sym_SEMI, - STATE(1125), 1, - aux_sym__variable_declarator_list_repeat1, + STATE(1309), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28659] = 4, - ACTIONS(2180), 1, + [26721] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3089), 1, + ACTIONS(2992), 1, anon_sym_RPAREN, - STATE(986), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [28673] = 4, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(1933), 1, - anon_sym_DOT, + STATE(1081), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28687] = 4, - ACTIONS(2194), 1, - anon_sym_COMMA, - ACTIONS(3091), 1, - anon_sym_SEMI, - STATE(1151), 1, - aux_sym_for_statement_repeat1, + [26735] = 4, + ACTIONS(2788), 1, + anon_sym_AMP, + ACTIONS(2994), 1, + anon_sym_RPAREN, + STATE(1025), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28701] = 4, - ACTIONS(506), 1, - anon_sym_RBRACE, - ACTIONS(3093), 1, + [26749] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - STATE(1117), 1, - aux_sym_element_value_array_initializer_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [28715] = 4, - ACTIONS(2567), 1, - anon_sym_default, - ACTIONS(3095), 1, - anon_sym_SEMI, - STATE(1305), 1, - sym__default_value, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [28729] = 4, - ACTIONS(2867), 1, - anon_sym_AMP, - ACTIONS(3097), 1, + ACTIONS(2996), 1, anon_sym_RPAREN, - STATE(1069), 1, - aux_sym_cast_expression_repeat1, + STATE(1081), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28743] = 2, + [26763] = 4, + ACTIONS(2998), 1, + anon_sym_RPAREN, + ACTIONS(3000), 1, + anon_sym_COMMA, + STATE(1086), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3099), 3, - anon_sym_DASH_GT, - anon_sym_COLON, - anon_sym_when, - [28753] = 4, - ACTIONS(3101), 1, - anon_sym_RPAREN, - ACTIONS(3103), 1, + [26777] = 4, + ACTIONS(2880), 1, anon_sym_COMMA, - STATE(1133), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(3003), 1, + anon_sym_RPAREN, + STATE(1043), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28767] = 2, + [26791] = 4, + ACTIONS(35), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, + anon_sym_SEMI, + STATE(334), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2200), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [28777] = 4, - ACTIONS(2935), 1, + [26805] = 4, + ACTIONS(3007), 1, anon_sym_COMMA, - ACTIONS(3106), 1, + ACTIONS(3010), 1, anon_sym_SEMI, - STATE(1064), 1, - aux_sym__variable_declarator_list_repeat1, + STATE(1089), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28791] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(3108), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + [26819] = 4, + ACTIONS(2432), 1, + sym_identifier, + ACTIONS(3012), 1, + sym_this, + STATE(1064), 1, + aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28805] = 4, - ACTIONS(2941), 1, + [26833] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3110), 1, + ACTIONS(3014), 1, anon_sym_RPAREN, - STATE(1078), 1, - aux_sym_formal_parameters_repeat1, + STATE(1081), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28819] = 4, - ACTIONS(3022), 1, + [26847] = 4, + ACTIONS(3016), 1, + anon_sym_RBRACE, + ACTIONS(3018), 1, anon_sym_COMMA, - ACTIONS(3112), 1, - anon_sym_RPAREN, - STATE(1094), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1020), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28833] = 4, - ACTIONS(3114), 1, + [26861] = 4, + ACTIONS(2788), 1, + anon_sym_AMP, + ACTIONS(3020), 1, anon_sym_RPAREN, - ACTIONS(3116), 1, - anon_sym_SEMI, - STATE(1119), 1, - aux_sym_resource_specification_repeat1, + STATE(1025), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28847] = 4, - ACTIONS(2208), 1, + [26875] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3118), 1, + ACTIONS(3022), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28861] = 2, + [26889] = 4, + ACTIONS(2139), 1, + anon_sym_COMMA, + ACTIONS(3024), 1, + anon_sym_RPAREN, + STATE(1081), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3120), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [28871] = 4, - ACTIONS(2208), 1, + [26903] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3122), 1, + ACTIONS(3026), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28885] = 4, - ACTIONS(2208), 1, + [26917] = 4, + ACTIONS(2935), 1, anon_sym_COMMA, - ACTIONS(3124), 1, + ACTIONS(3028), 1, anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + STATE(1023), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28899] = 2, + [26931] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2904), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [28909] = 4, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2509), 1, - anon_sym_DOT, - STATE(493), 1, - sym_argument_list, + ACTIONS(3030), 3, + anon_sym_transitive, + anon_sym_static, + sym_identifier, + [26941] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28923] = 4, - ACTIONS(2208), 1, + ACTIONS(3032), 3, + anon_sym_transitive, + anon_sym_static, + sym_identifier, + [26951] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3126), 1, + ACTIONS(3034), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28937] = 4, - ACTIONS(2208), 1, + [26965] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3128), 1, + ACTIONS(3036), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28951] = 4, - ACTIONS(2208), 1, + [26979] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3130), 1, + ACTIONS(3038), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28965] = 4, - ACTIONS(2208), 1, + [26993] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3132), 1, + ACTIONS(3040), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [28979] = 2, + [27007] = 4, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(3042), 1, + anon_sym_SEMI, + ACTIONS(3044), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3134), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [28989] = 4, - ACTIONS(3136), 1, - anon_sym_COMMA, - ACTIONS(3139), 1, + [27021] = 4, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(3046), 1, anon_sym_SEMI, - STATE(1151), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3048), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29003] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(3141), 1, - anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + [27035] = 4, + ACTIONS(3050), 1, + sym_identifier, + ACTIONS(3052), 1, + anon_sym_static, + STATE(1171), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29017] = 4, - ACTIONS(1346), 1, + [27049] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3143), 1, + ACTIONS(3054), 1, anon_sym_RPAREN, - STATE(1068), 1, - aux_sym_inferred_parameters_repeat1, + STATE(1081), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29031] = 4, - ACTIONS(3145), 1, - anon_sym_RPAREN, - ACTIONS(3147), 1, + [27063] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - STATE(1158), 1, - aux_sym_record_pattern_body_repeat1, + ACTIONS(3056), 1, + anon_sym_RPAREN, + STATE(1081), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29045] = 4, - ACTIONS(2208), 1, + [27077] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3149), 1, + ACTIONS(3058), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29059] = 4, - ACTIONS(2208), 1, + [27091] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3151), 1, + ACTIONS(3060), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29073] = 4, - ACTIONS(2208), 1, + [27105] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3153), 1, + ACTIONS(3062), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29087] = 4, - ACTIONS(3147), 1, + [27119] = 4, + ACTIONS(3064), 1, + anon_sym_RBRACE, + ACTIONS(3066), 1, anon_sym_COMMA, - ACTIONS(3155), 1, - anon_sym_RPAREN, - STATE(1123), 1, - aux_sym_record_pattern_body_repeat1, + STATE(1112), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29101] = 4, - ACTIONS(2208), 1, + [27133] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3157), 1, + ACTIONS(3069), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29115] = 4, - ACTIONS(2208), 1, + [27147] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3159), 1, + ACTIONS(3071), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29129] = 4, - ACTIONS(2208), 1, + [27161] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3161), 1, + ACTIONS(3073), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29143] = 4, - ACTIONS(2208), 1, + [27175] = 4, + ACTIONS(2139), 1, anon_sym_COMMA, - ACTIONS(3163), 1, + ACTIONS(3075), 1, anon_sym_RPAREN, - STATE(1070), 1, + STATE(1081), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29157] = 2, + [27189] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3165), 3, + ACTIONS(3077), 3, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [29167] = 4, - ACTIONS(2982), 1, + anon_sym_case, + anon_sym_default, + [27199] = 4, + ACTIONS(2944), 1, sym_identifier, - ACTIONS(2984), 1, + ACTIONS(2946), 1, anon_sym_STAR, - STATE(1334), 1, + STATE(1293), 1, sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29181] = 4, - ACTIONS(2216), 1, + [27213] = 4, + ACTIONS(2903), 1, + anon_sym_COMMA, + ACTIONS(3079), 1, anon_sym_SEMI, - ACTIONS(2835), 1, - anon_sym_RBRACE, - STATE(1368), 1, - sym_enum_body_declarations, + STATE(1042), 1, + aux_sym__variable_declarator_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27227] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29195] = 4, + ACTIONS(3081), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [27237] = 4, ACTIONS(35), 1, anon_sym_LBRACE, - ACTIONS(3167), 1, + ACTIONS(3083), 1, anon_sym_SEMI, - STATE(394), 1, + STATE(385), 1, sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29209] = 4, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(2939), 1, - anon_sym_LBRACE, - STATE(371), 1, - sym_module_body, + [27251] = 4, + ACTIONS(2139), 1, + anon_sym_COMMA, + ACTIONS(3085), 1, + anon_sym_RPAREN, + STATE(1081), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29223] = 4, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3169), 1, + [27265] = 4, + ACTIONS(2141), 1, + anon_sym_COMMA, + ACTIONS(3087), 1, anon_sym_SEMI, - ACTIONS(3171), 1, - anon_sym_to, + STATE(1089), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29237] = 4, - ACTIONS(2194), 1, + [27279] = 4, + ACTIONS(2911), 1, anon_sym_COMMA, - ACTIONS(3173), 1, + ACTIONS(3089), 1, + anon_sym_RPAREN, + STATE(1045), 1, + aux_sym_record_pattern_body_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27293] = 4, + ACTIONS(2141), 1, + anon_sym_COMMA, + ACTIONS(3091), 1, anon_sym_SEMI, - STATE(1151), 1, + STATE(1089), 1, aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29251] = 4, - ACTIONS(1321), 1, - anon_sym_LPAREN, - ACTIONS(2509), 1, + [27307] = 3, + ACTIONS(1531), 1, anon_sym_DOT, - STATE(495), 1, - sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29265] = 4, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3175), 1, + ACTIONS(3093), 2, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3177), 1, - anon_sym_to, + [27319] = 4, + ACTIONS(1339), 1, + anon_sym_LPAREN, + ACTIONS(3095), 1, + anon_sym_DOT, + STATE(1322), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29279] = 4, - ACTIONS(2867), 1, - anon_sym_AMP, - ACTIONS(3179), 1, - anon_sym_RPAREN, - STATE(1069), 1, - aux_sym_cast_expression_repeat1, + [27333] = 4, + ACTIONS(2432), 1, + sym_identifier, + ACTIONS(2434), 1, + sym_this, + STATE(1064), 1, + aux_sym_receiver_parameter_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29293] = 4, - ACTIONS(3181), 1, - anon_sym_RPAREN, - ACTIONS(3183), 1, + [27347] = 4, + ACTIONS(3097), 1, + anon_sym_COMMA, + ACTIONS(3100), 1, anon_sym_SEMI, - STATE(1173), 1, - aux_sym_resource_specification_repeat1, + STATE(1129), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29307] = 4, - ACTIONS(2305), 1, - anon_sym_RBRACE, - ACTIONS(3186), 1, + [27361] = 4, + ACTIONS(3102), 1, + anon_sym_RPAREN, + ACTIONS(3104), 1, anon_sym_COMMA, - STATE(1174), 1, - aux_sym_array_initializer_repeat1, + STATE(1130), 1, + aux_sym_record_pattern_body_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29321] = 4, - ACTIONS(2208), 1, - anon_sym_COMMA, - ACTIONS(3189), 1, + [27375] = 4, + ACTIONS(1510), 1, anon_sym_RPAREN, - STATE(1070), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2880), 1, + anon_sym_COMMA, + STATE(1086), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27389] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29335] = 3, - ACTIONS(1646), 1, + ACTIONS(3107), 2, + anon_sym_LBRACE, + anon_sym_throws, + [27398] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(308), 1, + STATE(194), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29346] = 2, + [27409] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3191), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [29355] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(376), 1, - sym_class_body, + ACTIONS(3109), 2, + anon_sym_GT, + anon_sym_COMMA, + [27418] = 3, + ACTIONS(2453), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29366] = 3, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(359), 1, - sym_interface_body, + [27429] = 3, + ACTIONS(3111), 1, + sym_identifier, + STATE(1005), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29377] = 3, - ACTIONS(1646), 1, + [27440] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(377), 1, + STATE(172), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29388] = 2, + [27451] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3193), 2, + ACTIONS(3113), 2, anon_sym_LBRACE, anon_sym_SEMI, - [29397] = 3, - ACTIONS(651), 1, + [27460] = 3, + ACTIONS(1339), 1, anon_sym_LPAREN, - STATE(1344), 1, - sym_parenthesized_expression, + STATE(451), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27471] = 3, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(173), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29408] = 3, - ACTIONS(1321), 1, + [27482] = 3, + ACTIONS(1339), 1, anon_sym_LPAREN, - STATE(497), 1, + STATE(464), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29419] = 3, - ACTIONS(1646), 1, + [27493] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3115), 2, + anon_sym_GT, + anon_sym_COMMA, + [27502] = 3, + ACTIONS(2565), 1, anon_sym_LBRACE, - STATE(266), 1, - sym_class_body, + STATE(270), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29430] = 3, - ACTIONS(651), 1, - anon_sym_LPAREN, - STATE(1212), 1, - sym_parenthesized_expression, + [27513] = 3, + ACTIONS(35), 1, + anon_sym_LBRACE, + STATE(214), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29441] = 3, - ACTIONS(1646), 1, + [27524] = 3, + ACTIONS(2565), 1, anon_sym_LBRACE, - STATE(349), 1, - sym_class_body, + STATE(174), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29452] = 3, - ACTIONS(2869), 1, + [27535] = 3, + ACTIONS(517), 1, anon_sym_LBRACE, - STATE(366), 1, - sym_enum_body, + STATE(549), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29463] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(488), 1, - sym_argument_list, + [27546] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29474] = 3, - ACTIONS(2913), 1, + ACTIONS(3117), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [27555] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2259), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [27564] = 3, + ACTIONS(35), 1, anon_sym_LBRACE, - STATE(159), 1, + STATE(121), 1, sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29485] = 3, - ACTIONS(512), 1, + [27575] = 3, + ACTIONS(517), 1, anon_sym_LBRACE, - STATE(517), 1, + STATE(514), 1, sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29496] = 3, - ACTIONS(2678), 1, + [27586] = 3, + ACTIONS(517), 1, anon_sym_LBRACE, - STATE(387), 1, - sym_interface_body, + STATE(542), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29507] = 3, - ACTIONS(512), 1, + [27597] = 3, + ACTIONS(3119), 1, anon_sym_LBRACE, - STATE(520), 1, - sym_array_initializer, + STATE(111), 1, + sym_switch_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29518] = 2, + [27608] = 3, + ACTIONS(1181), 1, + anon_sym_LPAREN, + STATE(25), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3195), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [29527] = 3, - ACTIONS(1321), 1, + [27619] = 3, + ACTIONS(1339), 1, anon_sym_LPAREN, - STATE(485), 1, + STATE(462), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27630] = 3, + ACTIONS(1339), 1, + anon_sym_LPAREN, + STATE(461), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29538] = 3, - ACTIONS(1321), 1, + [27641] = 3, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, + ACTIONS(2806), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27652] = 3, + ACTIONS(1339), 1, anon_sym_LPAREN, - STATE(1349), 1, + STATE(521), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29549] = 2, + [27663] = 3, + ACTIONS(2798), 1, + anon_sym_LBRACE, + STATE(495), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3197), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29558] = 2, + [27674] = 3, + ACTIONS(3121), 1, + sym_identifier, + STATE(1063), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3199), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29567] = 3, - ACTIONS(1321), 1, + [27685] = 3, + ACTIONS(3123), 1, + sym_identifier, + STATE(1006), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27696] = 3, + ACTIONS(1339), 1, anon_sym_LPAREN, - STATE(493), 1, + STATE(457), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29578] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(378), 1, - sym_class_body, + [27707] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29589] = 3, - ACTIONS(3044), 1, + ACTIONS(3125), 2, anon_sym_RPAREN, - ACTIONS(3201), 1, anon_sym_COMMA, + [27716] = 3, + ACTIONS(3127), 1, + sym_identifier, + STATE(1007), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29600] = 2, + [27727] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3203), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29609] = 2, + ACTIONS(3129), 2, + anon_sym_LBRACE, + anon_sym_throws, + [27736] = 3, + ACTIONS(1339), 1, + anon_sym_LPAREN, + STATE(1336), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3205), 2, - anon_sym_new, - sym_identifier, - [29618] = 2, + [27747] = 3, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(3131), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3207), 2, - anon_sym_LBRACE, - anon_sym_permits, - [29627] = 3, - ACTIONS(2678), 1, + [27758] = 3, + ACTIONS(2565), 1, anon_sym_LBRACE, - STATE(261), 1, + STATE(148), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29638] = 3, - ACTIONS(1514), 1, - anon_sym_LPAREN, - STATE(607), 1, - sym_record_pattern_body, + [27769] = 3, + ACTIONS(2798), 1, + anon_sym_LBRACE, + STATE(538), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29649] = 3, - ACTIONS(512), 1, - anon_sym_LBRACE, - STATE(563), 1, - sym_array_initializer, + [27780] = 3, + ACTIONS(3133), 1, + sym_identifier, + STATE(1041), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29660] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(281), 1, - sym_class_body, + [27791] = 3, + ACTIONS(3135), 1, + sym_identifier, + STATE(1175), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29671] = 3, - ACTIONS(1640), 1, + [27802] = 3, + ACTIONS(3137), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3139), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29682] = 2, + [27813] = 3, + ACTIONS(3141), 1, + sym_identifier, + STATE(1126), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3058), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [29691] = 3, - ACTIONS(1646), 1, + [27824] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(296), 1, + STATE(277), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29702] = 2, + [27835] = 3, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(158), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29711] = 3, - ACTIONS(3211), 1, + [27846] = 3, + ACTIONS(3143), 1, + anon_sym_DOT, + ACTIONS(3145), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27857] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(111), 1, - sym_switch_block, + STATE(166), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29722] = 2, + [27868] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3213), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29731] = 3, - ACTIONS(3215), 1, - anon_sym_DOT, - ACTIONS(3217), 1, - anon_sym_SEMI, + ACTIONS(2622), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [27877] = 3, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(167), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29742] = 3, - ACTIONS(2489), 1, - anon_sym_LPAREN, - STATE(1062), 1, - sym_formal_parameters, + [27888] = 3, + ACTIONS(3147), 1, + sym_identifier, + STATE(724), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29753] = 3, - ACTIONS(651), 1, - anon_sym_LPAREN, - STATE(22), 1, - sym_parenthesized_expression, + [27899] = 3, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(202), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29764] = 3, - ACTIONS(3219), 1, + [27910] = 3, + ACTIONS(3149), 1, anon_sym_LBRACE, - STATE(344), 1, + STATE(165), 1, sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29775] = 2, + [27921] = 3, + ACTIONS(2802), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3221), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [29784] = 3, - ACTIONS(3223), 1, - anon_sym_DASH_GT, - ACTIONS(3225), 1, - anon_sym_COLON, + [27932] = 3, + ACTIONS(2453), 1, + anon_sym_LPAREN, + STATE(960), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29795] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3227), 1, - anon_sym_SEMI, + [27943] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29806] = 3, - ACTIONS(1321), 1, + ACTIONS(2725), 2, + anon_sym_GT, + anon_sym_COMMA, + [27952] = 3, + ACTIONS(1339), 1, anon_sym_LPAREN, - STATE(489), 1, + STATE(450), 1, sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29817] = 2, + [27963] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2943), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29826] = 2, + ACTIONS(2942), 2, + sym_this, + sym_identifier, + [27972] = 3, + ACTIONS(3151), 1, + sym_identifier, + STATE(1015), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3229), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [29835] = 3, - ACTIONS(1640), 1, + [27983] = 3, + ACTIONS(1531), 1, anon_sym_DOT, - ACTIONS(3231), 1, + ACTIONS(3153), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29846] = 2, + [27994] = 3, + ACTIONS(3155), 1, + sym_identifier, + ACTIONS(3157), 1, + sym_super, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28005] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3233), 2, - anon_sym_LBRACE, - anon_sym_throws, - [29855] = 3, - ACTIONS(1646), 1, + ACTIONS(3159), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [28014] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(303), 1, + STATE(260), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29866] = 2, + [28025] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2986), 2, - anon_sym_GT, - anon_sym_COMMA, - [29875] = 3, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(2925), 1, - anon_sym_DOT, + ACTIONS(3161), 2, + sym_this, + sym_super, + [28034] = 3, + ACTIONS(2565), 1, + anon_sym_LBRACE, + STATE(233), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29886] = 3, - ACTIONS(3235), 1, - sym_identifier, - ACTIONS(3237), 1, - anon_sym_SEMI, + [28045] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29897] = 3, - ACTIONS(3239), 1, - anon_sym_DOT, - ACTIONS(3241), 1, + ACTIONS(2973), 2, + anon_sym_RPAREN, anon_sym_SEMI, + [28054] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2998), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [28063] = 3, + ACTIONS(2878), 1, + anon_sym_RPAREN, + ACTIONS(3163), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28074] = 3, + ACTIONS(35), 1, + anon_sym_LBRACE, + STATE(130), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29908] = 3, - ACTIONS(651), 1, + [28085] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2980), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [28094] = 3, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(274), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28105] = 3, + ACTIONS(1181), 1, anon_sym_LPAREN, - STATE(48), 1, + STATE(45), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29919] = 3, - ACTIONS(651), 1, + [28116] = 3, + ACTIONS(1181), 1, anon_sym_LPAREN, - STATE(49), 1, + STATE(46), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29930] = 3, - ACTIONS(2859), 1, + [28127] = 3, + ACTIONS(3165), 1, + sym_identifier, + STATE(603), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28138] = 3, + ACTIONS(2802), 1, anon_sym_LBRACE, - STATE(546), 1, - sym_constructor_body, + STATE(275), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29941] = 2, + [28149] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3243), 2, - anon_sym_GT, - anon_sym_COMMA, - [29950] = 2, + ACTIONS(3167), 2, + anon_sym_LBRACE, + anon_sym_permits, + [28158] = 3, + ACTIONS(2453), 1, + anon_sym_LPAREN, + STATE(998), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3245), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29959] = 2, + [28169] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3101), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [29968] = 2, + ACTIONS(3169), 2, + anon_sym_new, + sym_identifier, + [28178] = 3, + ACTIONS(1181), 1, + anon_sym_LPAREN, + STATE(17), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3247), 2, + [28189] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - anon_sym_throws, - [29977] = 2, + STATE(246), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3249), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [29986] = 3, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(369), 1, - sym_interface_body, + [28200] = 3, + ACTIONS(1339), 1, + anon_sym_LPAREN, + STATE(1339), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [29997] = 3, - ACTIONS(2913), 1, + [28211] = 3, + ACTIONS(2565), 1, anon_sym_LBRACE, - STATE(252), 1, - sym_block, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [30008] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3251), 1, - anon_sym_SEMI, + STATE(149), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30019] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3253), 1, - anon_sym_SEMI, + [28222] = 3, + ACTIONS(3171), 1, + sym_identifier, + STATE(443), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30030] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3255), 1, - anon_sym_SEMI, + [28233] = 3, + ACTIONS(3173), 1, + sym_identifier, + STATE(1061), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30041] = 3, - ACTIONS(1646), 1, + [28244] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(269), 1, + STATE(249), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30052] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3257), 1, - anon_sym_with, + [28255] = 3, + ACTIONS(3175), 1, + sym_identifier, + ACTIONS(3177), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30063] = 3, - ACTIONS(512), 1, - anon_sym_LBRACE, - STATE(566), 1, - sym_array_initializer, + [28266] = 3, + ACTIONS(3179), 1, + sym_identifier, + STATE(1104), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30074] = 2, + [28277] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 2, - anon_sym_GT, - anon_sym_COMMA, - [30083] = 3, - ACTIONS(2678), 1, + ACTIONS(3181), 2, anon_sym_LBRACE, - STATE(270), 1, - sym_interface_body, + anon_sym_SEMI, + [28286] = 3, + ACTIONS(3183), 1, + sym_identifier, + STATE(1166), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30094] = 3, - ACTIONS(3219), 1, - anon_sym_LBRACE, - STATE(380), 1, - sym_annotation_type_body, + [28297] = 3, + ACTIONS(3185), 1, + sym_identifier, + STATE(1230), 1, + sym_element_value_pair, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30105] = 2, + [28308] = 3, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3259), 2, - anon_sym_LBRACE, - anon_sym_permits, - [30114] = 2, + [28319] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3261), 2, - sym_this, - sym_super, - [30123] = 2, + ACTIONS(3187), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [28328] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2999), 2, - anon_sym_GT, + ACTIONS(3189), 2, anon_sym_COMMA, - [30132] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(1370), 1, - sym_argument_list, + anon_sym_SEMI, + [28337] = 3, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(3191), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30143] = 3, - ACTIONS(2859), 1, - anon_sym_LBRACE, - STATE(538), 1, - sym_constructor_body, + [28348] = 3, + ACTIONS(1181), 1, + anon_sym_LPAREN, + STATE(1353), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30154] = 2, + [28359] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3263), 2, + ACTIONS(3193), 2, anon_sym_RPAREN, - anon_sym_AMP, - [30163] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3265), 2, - anon_sym_GT, anon_sym_COMMA, - [30172] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(273), 1, - sym_class_body, + [28368] = 3, + ACTIONS(3195), 1, + sym_identifier, + STATE(1188), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30183] = 3, - ACTIONS(1646), 1, + [28379] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(260), 1, + STATE(250), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30194] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(354), 1, - sym_class_body, + [28390] = 3, + ACTIONS(1339), 1, + anon_sym_LPAREN, + STATE(494), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30205] = 3, - ACTIONS(651), 1, + [28401] = 3, + ACTIONS(1181), 1, anon_sym_LPAREN, - STATE(77), 1, + STATE(75), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30216] = 3, - ACTIONS(651), 1, + [28412] = 3, + ACTIONS(1181), 1, anon_sym_LPAREN, - STATE(78), 1, + STATE(76), 1, sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30227] = 3, - ACTIONS(1195), 1, + [28423] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2860), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [28432] = 3, + ACTIONS(1157), 1, anon_sym_while, - ACTIONS(3267), 1, + ACTIONS(3197), 1, anon_sym_else, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30238] = 3, - ACTIONS(3269), 1, + [28443] = 3, + ACTIONS(3199), 1, sym_identifier, - ACTIONS(3271), 1, + ACTIONS(3201), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30249] = 2, + [28454] = 3, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(3203), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [30258] = 3, - ACTIONS(651), 1, - anon_sym_LPAREN, - STATE(21), 1, - sym_parenthesized_expression, + [28465] = 3, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(3205), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30269] = 3, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(361), 1, - sym_interface_body, + [28476] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30280] = 2, + ACTIONS(3207), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [28485] = 3, + ACTIONS(3209), 1, + sym_identifier, + STATE(1105), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 2, - anon_sym_GT, - anon_sym_COMMA, - [30289] = 3, - ACTIONS(2869), 1, - anon_sym_LBRACE, - STATE(335), 1, - sym_enum_body, + [28496] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30300] = 3, - ACTIONS(3277), 1, - sym_identifier, - STATE(1236), 1, - sym_element_value_pair, + ACTIONS(3211), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [28505] = 3, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(151), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30311] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(550), 1, - sym_argument_list, + [28516] = 3, + ACTIONS(3213), 1, + sym_identifier, + STATE(1233), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30322] = 3, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, - ACTIONS(3279), 1, - anon_sym_DOT, + [28527] = 3, + ACTIONS(3215), 1, + sym_identifier, + STATE(1234), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30333] = 3, - ACTIONS(2489), 1, + [28538] = 3, + ACTIONS(1181), 1, anon_sym_LPAREN, - STATE(884), 1, - sym_formal_parameters, + STATE(1152), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30344] = 2, + [28549] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2728), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [30353] = 3, - ACTIONS(1646), 1, + ACTIONS(3217), 2, anon_sym_LBRACE, - STATE(267), 1, - sym_class_body, + anon_sym_permits, + [28558] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30364] = 3, - ACTIONS(2489), 1, - anon_sym_LPAREN, - STATE(1060), 1, - sym_formal_parameters, + ACTIONS(3064), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [28567] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30375] = 3, - ACTIONS(1646), 1, + ACTIONS(3219), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [28576] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(365), 1, + STATE(248), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30386] = 2, + [28587] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 2, + ACTIONS(3221), 2, anon_sym_RPAREN, anon_sym_COMMA, - [30395] = 3, + [28596] = 3, ACTIONS(35), 1, anon_sym_LBRACE, - STATE(333), 1, + STATE(218), 1, sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30406] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(287), 1, - sym_class_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [30417] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(528), 1, - sym_argument_list, + [28607] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30428] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(288), 1, - sym_class_body, + ACTIONS(3223), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [28616] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30439] = 3, - ACTIONS(35), 1, - anon_sym_LBRACE, - STATE(355), 1, - sym_block, + ACTIONS(3225), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [28625] = 3, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(3227), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30450] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(289), 1, - sym_class_body, + [28636] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30461] = 3, - ACTIONS(1321), 1, - anon_sym_LPAREN, - STATE(495), 1, - sym_argument_list, + ACTIONS(2964), 2, + anon_sym_GT, + anon_sym_COMMA, + [28645] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30472] = 2, + ACTIONS(3229), 2, + anon_sym_GT, + anon_sym_COMMA, + [28654] = 3, + ACTIONS(3231), 1, + anon_sym_DASH_GT, + ACTIONS(3233), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [30481] = 3, - ACTIONS(1646), 1, + [28665] = 3, + ACTIONS(2565), 1, anon_sym_LBRACE, - STATE(290), 1, - sym_class_body, + STATE(251), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30492] = 2, + [28676] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 2, + ACTIONS(2915), 2, anon_sym_GT, anon_sym_COMMA, - [30501] = 2, + [28685] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 2, + ACTIONS(3235), 2, anon_sym_RPAREN, anon_sym_COMMA, - [30510] = 3, - ACTIONS(2678), 1, - anon_sym_LBRACE, - STATE(291), 1, - sym_interface_body, + [28694] = 3, + ACTIONS(1531), 1, + anon_sym_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30521] = 3, - ACTIONS(2678), 1, + [28705] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(272), 1, - sym_interface_body, + STATE(145), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30532] = 2, + [28716] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3181), 2, + ACTIONS(3239), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [30541] = 2, + anon_sym_AMP, + [28725] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 2, + anon_sym_GT, + anon_sym_COMMA, + [28734] = 3, + ACTIONS(517), 1, + anon_sym_LBRACE, + STATE(546), 1, + sym_array_initializer, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28745] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3074), 2, + ACTIONS(3243), 2, anon_sym_RPAREN, anon_sym_COMMA, - [30550] = 3, - ACTIONS(1640), 1, - anon_sym_DOT, - ACTIONS(3289), 1, - anon_sym_SEMI, + [28754] = 3, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(170), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30561] = 3, - ACTIONS(1646), 1, + [28765] = 3, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(264), 1, + STATE(278), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30572] = 2, + [28776] = 3, + ACTIONS(3149), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 2, - sym_this, - sym_identifier, - [30581] = 2, + [28787] = 3, + ACTIONS(1545), 1, + anon_sym_LBRACE, + STATE(171), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [30590] = 2, + [28798] = 3, + ACTIONS(2565), 1, + anon_sym_LBRACE, + STATE(146), 1, + sym_interface_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28809] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 2, + ACTIONS(3102), 2, anon_sym_RPAREN, anon_sym_COMMA, - [30599] = 2, - ACTIONS(3293), 1, - anon_sym_LPAREN, + [28818] = 3, + ACTIONS(2565), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30607] = 2, - ACTIONS(3008), 1, - anon_sym_RBRACE, + [28829] = 3, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, + ACTIONS(3245), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30615] = 2, - ACTIONS(3112), 1, - anon_sym_RPAREN, + [28840] = 2, + ACTIONS(3247), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30623] = 2, - ACTIONS(2228), 1, - anon_sym_RBRACE, + [28848] = 2, + ACTIONS(3249), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30631] = 2, - ACTIONS(3295), 1, - sym_identifier, + [28856] = 2, + ACTIONS(3231), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30639] = 2, - ACTIONS(3297), 1, - anon_sym_class, + [28864] = 2, + ACTIONS(2933), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30647] = 2, - ACTIONS(3299), 1, - sym_identifier, + [28872] = 2, + ACTIONS(3251), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30655] = 2, - ACTIONS(3301), 1, + [28880] = 2, + ACTIONS(3253), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30663] = 2, - ACTIONS(3303), 1, + [28888] = 2, + ACTIONS(1671), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [28896] = 2, + ACTIONS(3255), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30671] = 2, - ACTIONS(3305), 1, + [28904] = 2, + ACTIONS(3257), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30679] = 2, - ACTIONS(3307), 1, - ts_builtin_sym_end, + [28912] = 2, + ACTIONS(3259), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30687] = 2, - ACTIONS(3309), 1, - anon_sym_RBRACE, + [28920] = 2, + ACTIONS(3261), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30695] = 2, - ACTIONS(1749), 1, - anon_sym_COLON_COLON, + [28928] = 2, + ACTIONS(1067), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30703] = 2, - ACTIONS(3311), 1, - anon_sym_module, + [28936] = 2, + ACTIONS(1073), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30711] = 2, - ACTIONS(2571), 1, - anon_sym_DOT, + [28944] = 2, + ACTIONS(3263), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30719] = 2, - ACTIONS(3313), 1, - anon_sym_DASH_GT, + [28952] = 2, + ACTIONS(3265), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30727] = 2, - ACTIONS(2958), 1, - anon_sym_DOT, + [28960] = 2, + ACTIONS(3267), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30735] = 2, - ACTIONS(3052), 1, + [28968] = 2, + ACTIONS(3269), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30743] = 2, - ACTIONS(3315), 1, + [28976] = 2, + ACTIONS(3271), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30751] = 2, - ACTIONS(3317), 1, + [28984] = 2, + ACTIONS(3273), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30759] = 2, - ACTIONS(3319), 1, - sym_identifier, + [28992] = 2, + ACTIONS(2971), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30767] = 2, - ACTIONS(3321), 1, - anon_sym_RPAREN, + [29000] = 2, + ACTIONS(3275), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30775] = 2, - ACTIONS(3323), 1, - anon_sym_SEMI, + [29008] = 2, + ACTIONS(3095), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30783] = 2, - ACTIONS(3325), 1, + [29016] = 2, + ACTIONS(3277), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30791] = 2, - ACTIONS(3225), 1, - anon_sym_COLON, + [29024] = 2, + ACTIONS(2721), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30799] = 2, - ACTIONS(3327), 1, - sym_identifier, + [29032] = 2, + ACTIONS(3279), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30807] = 2, - ACTIONS(3329), 1, - anon_sym_EQ, + [29040] = 2, + ACTIONS(3281), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30815] = 2, - ACTIONS(582), 1, - anon_sym_RBRACK, + [29048] = 2, + ACTIONS(2265), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30823] = 2, - ACTIONS(3331), 1, + [29056] = 2, + ACTIONS(3283), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30831] = 2, - ACTIONS(3333), 1, + [29064] = 2, + ACTIONS(1350), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30839] = 2, - ACTIONS(3223), 1, - anon_sym_DASH_GT, + [29072] = 2, + ACTIONS(3285), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30847] = 2, - ACTIONS(3335), 1, - anon_sym_SEMI, + [29080] = 2, + ACTIONS(3287), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30855] = 2, - ACTIONS(3337), 1, - anon_sym_SEMI, + [29088] = 2, + ACTIONS(2944), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30863] = 2, - ACTIONS(3339), 1, + [29096] = 2, + ACTIONS(3289), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30871] = 2, - ACTIONS(3341), 1, - sym_identifier, + [29104] = 2, + ACTIONS(3291), 1, + anon_sym_class, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30879] = 2, - ACTIONS(2982), 1, - sym_identifier, + [29112] = 2, + ACTIONS(3293), 1, + anon_sym_while, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30887] = 2, - ACTIONS(3343), 1, - anon_sym_SEMI, + [29120] = 2, + ACTIONS(3295), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30895] = 2, - ACTIONS(3345), 1, + [29128] = 2, + ACTIONS(3297), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30903] = 2, - ACTIONS(564), 1, - anon_sym_RBRACK, + [29136] = 2, + ACTIONS(3299), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30911] = 2, - ACTIONS(3347), 1, - sym_identifier, + [29144] = 2, + ACTIONS(3301), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30919] = 2, - ACTIONS(3349), 1, + [29152] = 2, + ACTIONS(2252), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [29160] = 2, + ACTIONS(3303), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30927] = 2, - ACTIONS(3351), 1, - anon_sym_while, + [29168] = 2, + ACTIONS(3305), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30935] = 2, - ACTIONS(3353), 1, + [29176] = 2, + ACTIONS(3307), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30943] = 2, - ACTIONS(3355), 1, - anon_sym_LBRACE, + [29184] = 2, + ACTIONS(3309), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30951] = 2, - ACTIONS(3357), 1, - anon_sym_LPAREN, + [29192] = 2, + ACTIONS(3311), 1, + anon_sym_module, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30959] = 2, - ACTIONS(3036), 1, - anon_sym_RPAREN, + [29200] = 2, + ACTIONS(3313), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30967] = 2, - ACTIONS(3359), 1, + [29208] = 2, + ACTIONS(3315), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30975] = 2, - ACTIONS(3361), 1, - anon_sym_SEMI, + [29216] = 2, + ACTIONS(2512), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30983] = 2, - ACTIONS(3363), 1, + [29224] = 2, + ACTIONS(3317), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30991] = 2, - ACTIONS(3365), 1, - anon_sym_RPAREN, + [29232] = 2, + ACTIONS(3319), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [30999] = 2, - ACTIONS(1332), 1, - anon_sym_DASH_GT, + [29240] = 2, + ACTIONS(3321), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31007] = 2, - ACTIONS(3367), 1, + [29248] = 2, + ACTIONS(3323), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31015] = 2, - ACTIONS(3369), 1, + [29256] = 2, + ACTIONS(3325), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [29264] = 2, + ACTIONS(3327), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31023] = 2, - ACTIONS(3371), 1, - anon_sym_SEMI, + [29272] = 2, + ACTIONS(3329), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31031] = 2, - ACTIONS(3373), 1, - anon_sym_LBRACE, + [29280] = 2, + ACTIONS(3331), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31039] = 2, - ACTIONS(562), 1, - anon_sym_RBRACK, + [29288] = 2, + ACTIONS(3333), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31047] = 2, - ACTIONS(3375), 1, - anon_sym_SEMI, + [29296] = 2, + ACTIONS(3335), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31055] = 2, - ACTIONS(2835), 1, - anon_sym_RBRACE, + [29304] = 2, + ACTIONS(3337), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31063] = 2, - ACTIONS(3377), 1, + [29312] = 2, + ACTIONS(2954), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31071] = 2, - ACTIONS(3379), 1, - anon_sym_LBRACE, + [29320] = 2, + ACTIONS(3339), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31079] = 2, - ACTIONS(3381), 1, - sym_identifier, + [29328] = 2, + ACTIONS(3341), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31087] = 2, - ACTIONS(3383), 1, - sym_identifier, + [29336] = 2, + ACTIONS(3343), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31095] = 2, - ACTIONS(3385), 1, + [29344] = 2, + ACTIONS(3345), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31103] = 2, - ACTIONS(3387), 1, - anon_sym_DASH_GT, + [29352] = 2, + ACTIONS(3347), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31111] = 2, - ACTIONS(3389), 1, - anon_sym_LPAREN, + [29360] = 2, + ACTIONS(3349), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [29368] = 2, + ACTIONS(3351), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31119] = 2, - ACTIONS(560), 1, + [29376] = 2, + ACTIONS(1071), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31127] = 2, - ACTIONS(3391), 1, + [29384] = 2, + ACTIONS(3353), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31135] = 2, - ACTIONS(3393), 1, - sym_identifier, + [29392] = 2, + ACTIONS(3355), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31143] = 2, - ACTIONS(3395), 1, - anon_sym_EQ, + [29400] = 2, + ACTIONS(3357), 1, + anon_sym_module, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31151] = 2, - ACTIONS(3397), 1, - anon_sym_SEMI, + [29408] = 2, + ACTIONS(3359), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31159] = 2, - ACTIONS(2317), 1, - anon_sym_RBRACE, + [29416] = 2, + ACTIONS(3361), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31167] = 2, - ACTIONS(3399), 1, - anon_sym_LPAREN, + [29424] = 2, + ACTIONS(3363), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31175] = 2, - ACTIONS(3401), 1, - anon_sym_SEMI, + [29432] = 2, + ACTIONS(1065), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31183] = 2, - ACTIONS(3403), 1, - anon_sym_EQ, + [29440] = 2, + ACTIONS(3365), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31191] = 2, - ACTIONS(3405), 1, - anon_sym_RPAREN, + [29448] = 2, + ACTIONS(3016), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31199] = 2, - ACTIONS(3407), 1, + [29456] = 2, + ACTIONS(3367), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31207] = 2, - ACTIONS(3409), 1, - sym_identifier, + [29464] = 2, + ACTIONS(3369), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31215] = 2, - ACTIONS(2293), 1, + [29472] = 2, + ACTIONS(2164), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31223] = 2, - ACTIONS(3411), 1, - anon_sym_RPAREN, + [29480] = 2, + ACTIONS(3371), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [29488] = 2, + ACTIONS(3233), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [29496] = 2, + ACTIONS(3373), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [31231] = 2, - ACTIONS(3413), 1, + [29504] = 2, + ACTIONS(3375), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, @@ -73849,979 +71057,966 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(405)] = 0, - [SMALL_STATE(406)] = 70, - [SMALL_STATE(407)] = 189, - [SMALL_STATE(408)] = 308, - [SMALL_STATE(409)] = 427, - [SMALL_STATE(410)] = 546, - [SMALL_STATE(411)] = 665, - [SMALL_STATE(412)] = 754, - [SMALL_STATE(413)] = 847, - [SMALL_STATE(414)] = 942, - [SMALL_STATE(415)] = 1049, - [SMALL_STATE(416)] = 1136, - [SMALL_STATE(417)] = 1243, - [SMALL_STATE(418)] = 1330, - [SMALL_STATE(419)] = 1437, - [SMALL_STATE(420)] = 1523, - [SMALL_STATE(421)] = 1609, - [SMALL_STATE(422)] = 1695, - [SMALL_STATE(423)] = 1781, - [SMALL_STATE(424)] = 1846, - [SMALL_STATE(425)] = 1940, - [SMALL_STATE(426)] = 2034, - [SMALL_STATE(427)] = 2128, - [SMALL_STATE(428)] = 2195, - [SMALL_STATE(429)] = 2256, - [SMALL_STATE(430)] = 2317, - [SMALL_STATE(431)] = 2381, - [SMALL_STATE(432)] = 2445, - [SMALL_STATE(433)] = 2500, - [SMALL_STATE(434)] = 2565, - [SMALL_STATE(435)] = 2640, - [SMALL_STATE(436)] = 2705, - [SMALL_STATE(437)] = 2760, - [SMALL_STATE(438)] = 2815, - [SMALL_STATE(439)] = 2881, - [SMALL_STATE(440)] = 2939, - [SMALL_STATE(441)] = 3005, - [SMALL_STATE(442)] = 3074, - [SMALL_STATE(443)] = 3137, - [SMALL_STATE(444)] = 3200, - [SMALL_STATE(445)] = 3273, - [SMALL_STATE(446)] = 3338, - [SMALL_STATE(447)] = 3402, - [SMALL_STATE(448)] = 3460, - [SMALL_STATE(449)] = 3524, - [SMALL_STATE(450)] = 3588, - [SMALL_STATE(451)] = 3652, - [SMALL_STATE(452)] = 3703, - [SMALL_STATE(453)] = 3760, - [SMALL_STATE(454)] = 3811, - [SMALL_STATE(455)] = 3864, - [SMALL_STATE(456)] = 3919, - [SMALL_STATE(457)] = 3970, - [SMALL_STATE(458)] = 4021, - [SMALL_STATE(459)] = 4072, - [SMALL_STATE(460)] = 4123, - [SMALL_STATE(461)] = 4174, - [SMALL_STATE(462)] = 4231, - [SMALL_STATE(463)] = 4284, - [SMALL_STATE(464)] = 4334, - [SMALL_STATE(465)] = 4392, - [SMALL_STATE(466)] = 4442, - [SMALL_STATE(467)] = 4492, - [SMALL_STATE(468)] = 4542, - [SMALL_STATE(469)] = 4592, - [SMALL_STATE(470)] = 4644, - [SMALL_STATE(471)] = 4694, - [SMALL_STATE(472)] = 4776, - [SMALL_STATE(473)] = 4826, - [SMALL_STATE(474)] = 4875, - [SMALL_STATE(475)] = 4924, - [SMALL_STATE(476)] = 4973, - [SMALL_STATE(477)] = 5022, - [SMALL_STATE(478)] = 5076, - [SMALL_STATE(479)] = 5150, - [SMALL_STATE(480)] = 5204, - [SMALL_STATE(481)] = 5251, - [SMALL_STATE(482)] = 5322, - [SMALL_STATE(483)] = 5395, - [SMALL_STATE(484)] = 5458, - [SMALL_STATE(485)] = 5510, - [SMALL_STATE(486)] = 5559, - [SMALL_STATE(487)] = 5608, - [SMALL_STATE(488)] = 5657, - [SMALL_STATE(489)] = 5706, - [SMALL_STATE(490)] = 5755, - [SMALL_STATE(491)] = 5804, - [SMALL_STATE(492)] = 5853, - [SMALL_STATE(493)] = 5902, - [SMALL_STATE(494)] = 5951, - [SMALL_STATE(495)] = 6000, - [SMALL_STATE(496)] = 6049, - [SMALL_STATE(497)] = 6098, - [SMALL_STATE(498)] = 6147, - [SMALL_STATE(499)] = 6198, - [SMALL_STATE(500)] = 6247, - [SMALL_STATE(501)] = 6291, - [SMALL_STATE(502)] = 6335, - [SMALL_STATE(503)] = 6379, - [SMALL_STATE(504)] = 6423, - [SMALL_STATE(505)] = 6467, - [SMALL_STATE(506)] = 6519, - [SMALL_STATE(507)] = 6563, - [SMALL_STATE(508)] = 6607, - [SMALL_STATE(509)] = 6651, - [SMALL_STATE(510)] = 6703, - [SMALL_STATE(511)] = 6746, - [SMALL_STATE(512)] = 6789, - [SMALL_STATE(513)] = 6838, - [SMALL_STATE(514)] = 6881, - [SMALL_STATE(515)] = 6924, - [SMALL_STATE(516)] = 6967, - [SMALL_STATE(517)] = 7010, - [SMALL_STATE(518)] = 7053, - [SMALL_STATE(519)] = 7096, - [SMALL_STATE(520)] = 7139, - [SMALL_STATE(521)] = 7182, - [SMALL_STATE(522)] = 7225, - [SMALL_STATE(523)] = 7268, - [SMALL_STATE(524)] = 7311, - [SMALL_STATE(525)] = 7354, - [SMALL_STATE(526)] = 7397, - [SMALL_STATE(527)] = 7440, - [SMALL_STATE(528)] = 7483, - [SMALL_STATE(529)] = 7526, - [SMALL_STATE(530)] = 7569, - [SMALL_STATE(531)] = 7612, - [SMALL_STATE(532)] = 7655, - [SMALL_STATE(533)] = 7698, - [SMALL_STATE(534)] = 7741, - [SMALL_STATE(535)] = 7784, - [SMALL_STATE(536)] = 7827, - [SMALL_STATE(537)] = 7870, - [SMALL_STATE(538)] = 7913, - [SMALL_STATE(539)] = 7956, - [SMALL_STATE(540)] = 7999, - [SMALL_STATE(541)] = 8042, - [SMALL_STATE(542)] = 8085, - [SMALL_STATE(543)] = 8128, - [SMALL_STATE(544)] = 8171, - [SMALL_STATE(545)] = 8214, - [SMALL_STATE(546)] = 8257, - [SMALL_STATE(547)] = 8300, - [SMALL_STATE(548)] = 8343, - [SMALL_STATE(549)] = 8386, - [SMALL_STATE(550)] = 8429, - [SMALL_STATE(551)] = 8472, - [SMALL_STATE(552)] = 8515, - [SMALL_STATE(553)] = 8558, - [SMALL_STATE(554)] = 8601, - [SMALL_STATE(555)] = 8644, - [SMALL_STATE(556)] = 8687, - [SMALL_STATE(557)] = 8730, - [SMALL_STATE(558)] = 8779, - [SMALL_STATE(559)] = 8822, - [SMALL_STATE(560)] = 8865, - [SMALL_STATE(561)] = 8924, - [SMALL_STATE(562)] = 8967, - [SMALL_STATE(563)] = 9010, - [SMALL_STATE(564)] = 9053, - [SMALL_STATE(565)] = 9096, - [SMALL_STATE(566)] = 9139, - [SMALL_STATE(567)] = 9182, - [SMALL_STATE(568)] = 9225, - [SMALL_STATE(569)] = 9268, - [SMALL_STATE(570)] = 9311, - [SMALL_STATE(571)] = 9354, - [SMALL_STATE(572)] = 9397, - [SMALL_STATE(573)] = 9446, - [SMALL_STATE(574)] = 9489, - [SMALL_STATE(575)] = 9536, - [SMALL_STATE(576)] = 9579, - [SMALL_STATE(577)] = 9621, - [SMALL_STATE(578)] = 9667, - [SMALL_STATE(579)] = 9709, - [SMALL_STATE(580)] = 9755, - [SMALL_STATE(581)] = 9804, - [SMALL_STATE(582)] = 9851, - [SMALL_STATE(583)] = 9900, - [SMALL_STATE(584)] = 9969, - [SMALL_STATE(585)] = 10011, - [SMALL_STATE(586)] = 10051, - [SMALL_STATE(587)] = 10091, - [SMALL_STATE(588)] = 10131, - [SMALL_STATE(589)] = 10197, - [SMALL_STATE(590)] = 10237, - [SMALL_STATE(591)] = 10277, - [SMALL_STATE(592)] = 10317, - [SMALL_STATE(593)] = 10357, - [SMALL_STATE(594)] = 10397, - [SMALL_STATE(595)] = 10437, - [SMALL_STATE(596)] = 10477, - [SMALL_STATE(597)] = 10517, - [SMALL_STATE(598)] = 10557, - [SMALL_STATE(599)] = 10597, - [SMALL_STATE(600)] = 10639, - [SMALL_STATE(601)] = 10679, - [SMALL_STATE(602)] = 10719, - [SMALL_STATE(603)] = 10759, - [SMALL_STATE(604)] = 10799, - [SMALL_STATE(605)] = 10839, - [SMALL_STATE(606)] = 10879, - [SMALL_STATE(607)] = 10919, - [SMALL_STATE(608)] = 10959, - [SMALL_STATE(609)] = 10999, - [SMALL_STATE(610)] = 11039, - [SMALL_STATE(611)] = 11108, - [SMALL_STATE(612)] = 11171, - [SMALL_STATE(613)] = 11234, - [SMALL_STATE(614)] = 11277, - [SMALL_STATE(615)] = 11346, - [SMALL_STATE(616)] = 11407, - [SMALL_STATE(617)] = 11454, - [SMALL_STATE(618)] = 11519, - [SMALL_STATE(619)] = 11588, - [SMALL_STATE(620)] = 11647, - [SMALL_STATE(621)] = 11698, - [SMALL_STATE(622)] = 11755, - [SMALL_STATE(623)] = 11800, - [SMALL_STATE(624)] = 11844, - [SMALL_STATE(625)] = 11886, - [SMALL_STATE(626)] = 11930, - [SMALL_STATE(627)] = 12006, - [SMALL_STATE(628)] = 12050, - [SMALL_STATE(629)] = 12087, - [SMALL_STATE(630)] = 12126, - [SMALL_STATE(631)] = 12201, - [SMALL_STATE(632)] = 12267, - [SMALL_STATE(633)] = 12333, - [SMALL_STATE(634)] = 12399, - [SMALL_STATE(635)] = 12465, - [SMALL_STATE(636)] = 12531, - [SMALL_STATE(637)] = 12573, - [SMALL_STATE(638)] = 12609, - [SMALL_STATE(639)] = 12665, - [SMALL_STATE(640)] = 12723, - [SMALL_STATE(641)] = 12777, - [SMALL_STATE(642)] = 12837, - [SMALL_STATE(643)] = 12873, - [SMALL_STATE(644)] = 12921, - [SMALL_STATE(645)] = 12983, - [SMALL_STATE(646)] = 13049, - [SMALL_STATE(647)] = 13091, - [SMALL_STATE(648)] = 13151, - [SMALL_STATE(649)] = 13209, - [SMALL_STATE(650)] = 13253, - [SMALL_STATE(651)] = 13322, - [SMALL_STATE(652)] = 13377, - [SMALL_STATE(653)] = 13446, - [SMALL_STATE(654)] = 13511, - [SMALL_STATE(655)] = 13570, - [SMALL_STATE(656)] = 13639, - [SMALL_STATE(657)] = 13692, - [SMALL_STATE(658)] = 13761, - [SMALL_STATE(659)] = 13830, - [SMALL_STATE(660)] = 13899, - [SMALL_STATE(661)] = 13968, - [SMALL_STATE(662)] = 14037, - [SMALL_STATE(663)] = 14106, - [SMALL_STATE(664)] = 14141, - [SMALL_STATE(665)] = 14210, - [SMALL_STATE(666)] = 14245, - [SMALL_STATE(667)] = 14280, - [SMALL_STATE(668)] = 14317, - [SMALL_STATE(669)] = 14376, - [SMALL_STATE(670)] = 14445, - [SMALL_STATE(671)] = 14514, - [SMALL_STATE(672)] = 14583, - [SMALL_STATE(673)] = 14652, - [SMALL_STATE(674)] = 14721, - [SMALL_STATE(675)] = 14790, - [SMALL_STATE(676)] = 14859, - [SMALL_STATE(677)] = 14928, - [SMALL_STATE(678)] = 14997, - [SMALL_STATE(679)] = 15066, - [SMALL_STATE(680)] = 15135, - [SMALL_STATE(681)] = 15204, - [SMALL_STATE(682)] = 15273, - [SMALL_STATE(683)] = 15342, - [SMALL_STATE(684)] = 15411, - [SMALL_STATE(685)] = 15480, - [SMALL_STATE(686)] = 15549, - [SMALL_STATE(687)] = 15618, - [SMALL_STATE(688)] = 15687, - [SMALL_STATE(689)] = 15722, - [SMALL_STATE(690)] = 15786, - [SMALL_STATE(691)] = 15850, - [SMALL_STATE(692)] = 15914, - [SMALL_STATE(693)] = 15952, - [SMALL_STATE(694)] = 15992, - [SMALL_STATE(695)] = 16042, - [SMALL_STATE(696)] = 16082, - [SMALL_STATE(697)] = 16116, - [SMALL_STATE(698)] = 16150, - [SMALL_STATE(699)] = 16214, - [SMALL_STATE(700)] = 16278, - [SMALL_STATE(701)] = 16342, - [SMALL_STATE(702)] = 16406, - [SMALL_STATE(703)] = 16440, - [SMALL_STATE(704)] = 16474, - [SMALL_STATE(705)] = 16530, - [SMALL_STATE(706)] = 16594, - [SMALL_STATE(707)] = 16654, - [SMALL_STATE(708)] = 16704, - [SMALL_STATE(709)] = 16770, - [SMALL_STATE(710)] = 16833, - [SMALL_STATE(711)] = 16888, - [SMALL_STATE(712)] = 16951, - [SMALL_STATE(713)] = 17014, - [SMALL_STATE(714)] = 17075, - [SMALL_STATE(715)] = 17138, - [SMALL_STATE(716)] = 17171, - [SMALL_STATE(717)] = 17226, - [SMALL_STATE(718)] = 17281, - [SMALL_STATE(719)] = 17342, - [SMALL_STATE(720)] = 17405, - [SMALL_STATE(721)] = 17468, - [SMALL_STATE(722)] = 17531, - [SMALL_STATE(723)] = 17594, - [SMALL_STATE(724)] = 17657, - [SMALL_STATE(725)] = 17720, - [SMALL_STATE(726)] = 17783, - [SMALL_STATE(727)] = 17846, - [SMALL_STATE(728)] = 17909, - [SMALL_STATE(729)] = 17972, - [SMALL_STATE(730)] = 18035, - [SMALL_STATE(731)] = 18068, - [SMALL_STATE(732)] = 18101, - [SMALL_STATE(733)] = 18164, - [SMALL_STATE(734)] = 18227, - [SMALL_STATE(735)] = 18282, - [SMALL_STATE(736)] = 18315, - [SMALL_STATE(737)] = 18378, - [SMALL_STATE(738)] = 18441, - [SMALL_STATE(739)] = 18504, - [SMALL_STATE(740)] = 18567, - [SMALL_STATE(741)] = 18630, - [SMALL_STATE(742)] = 18693, - [SMALL_STATE(743)] = 18756, - [SMALL_STATE(744)] = 18819, - [SMALL_STATE(745)] = 18882, - [SMALL_STATE(746)] = 18945, - [SMALL_STATE(747)] = 19008, - [SMALL_STATE(748)] = 19071, - [SMALL_STATE(749)] = 19134, - [SMALL_STATE(750)] = 19197, - [SMALL_STATE(751)] = 19260, - [SMALL_STATE(752)] = 19323, - [SMALL_STATE(753)] = 19355, - [SMALL_STATE(754)] = 19387, - [SMALL_STATE(755)] = 19425, - [SMALL_STATE(756)] = 19477, - [SMALL_STATE(757)] = 19529, - [SMALL_STATE(758)] = 19563, - [SMALL_STATE(759)] = 19621, - [SMALL_STATE(760)] = 19673, - [SMALL_STATE(761)] = 19725, - [SMALL_STATE(762)] = 19777, - [SMALL_STATE(763)] = 19829, - [SMALL_STATE(764)] = 19881, - [SMALL_STATE(765)] = 19934, - [SMALL_STATE(766)] = 19965, - [SMALL_STATE(767)] = 19996, - [SMALL_STATE(768)] = 20037, - [SMALL_STATE(769)] = 20086, - [SMALL_STATE(770)] = 20139, - [SMALL_STATE(771)] = 20192, - [SMALL_STATE(772)] = 20245, - [SMALL_STATE(773)] = 20297, - [SMALL_STATE(774)] = 20349, - [SMALL_STATE(775)] = 20395, - [SMALL_STATE(776)] = 20447, - [SMALL_STATE(777)] = 20493, - [SMALL_STATE(778)] = 20545, - [SMALL_STATE(779)] = 20593, - [SMALL_STATE(780)] = 20645, - [SMALL_STATE(781)] = 20697, - [SMALL_STATE(782)] = 20743, - [SMALL_STATE(783)] = 20789, - [SMALL_STATE(784)] = 20837, - [SMALL_STATE(785)] = 20883, - [SMALL_STATE(786)] = 20931, - [SMALL_STATE(787)] = 20977, - [SMALL_STATE(788)] = 21025, - [SMALL_STATE(789)] = 21073, - [SMALL_STATE(790)] = 21125, - [SMALL_STATE(791)] = 21173, - [SMALL_STATE(792)] = 21219, - [SMALL_STATE(793)] = 21252, - [SMALL_STATE(794)] = 21301, - [SMALL_STATE(795)] = 21348, - [SMALL_STATE(796)] = 21377, - [SMALL_STATE(797)] = 21406, - [SMALL_STATE(798)] = 21455, - [SMALL_STATE(799)] = 21502, - [SMALL_STATE(800)] = 21549, - [SMALL_STATE(801)] = 21578, - [SMALL_STATE(802)] = 21625, - [SMALL_STATE(803)] = 21674, - [SMALL_STATE(804)] = 21703, - [SMALL_STATE(805)] = 21750, - [SMALL_STATE(806)] = 21792, - [SMALL_STATE(807)] = 21836, - [SMALL_STATE(808)] = 21886, - [SMALL_STATE(809)] = 21930, - [SMALL_STATE(810)] = 21972, - [SMALL_STATE(811)] = 22014, - [SMALL_STATE(812)] = 22064, - [SMALL_STATE(813)] = 22106, - [SMALL_STATE(814)] = 22156, - [SMALL_STATE(815)] = 22199, - [SMALL_STATE(816)] = 22232, - [SMALL_STATE(817)] = 22271, - [SMALL_STATE(818)] = 22312, - [SMALL_STATE(819)] = 22353, - [SMALL_STATE(820)] = 22396, - [SMALL_STATE(821)] = 22436, - [SMALL_STATE(822)] = 22476, - [SMALL_STATE(823)] = 22516, - [SMALL_STATE(824)] = 22552, - [SMALL_STATE(825)] = 22592, - [SMALL_STATE(826)] = 22632, - [SMALL_STATE(827)] = 22666, - [SMALL_STATE(828)] = 22703, - [SMALL_STATE(829)] = 22740, - [SMALL_STATE(830)] = 22777, - [SMALL_STATE(831)] = 22814, - [SMALL_STATE(832)] = 22851, - [SMALL_STATE(833)] = 22878, - [SMALL_STATE(834)] = 22915, - [SMALL_STATE(835)] = 22948, - [SMALL_STATE(836)] = 22973, - [SMALL_STATE(837)] = 23010, - [SMALL_STATE(838)] = 23035, - [SMALL_STATE(839)] = 23077, - [SMALL_STATE(840)] = 23119, - [SMALL_STATE(841)] = 23161, - [SMALL_STATE(842)] = 23203, - [SMALL_STATE(843)] = 23245, - [SMALL_STATE(844)] = 23287, - [SMALL_STATE(845)] = 23329, - [SMALL_STATE(846)] = 23355, - [SMALL_STATE(847)] = 23397, - [SMALL_STATE(848)] = 23430, - [SMALL_STATE(849)] = 23463, - [SMALL_STATE(850)] = 23500, - [SMALL_STATE(851)] = 23536, - [SMALL_STATE(852)] = 23568, - [SMALL_STATE(853)] = 23598, - [SMALL_STATE(854)] = 23632, - [SMALL_STATE(855)] = 23666, - [SMALL_STATE(856)] = 23702, - [SMALL_STATE(857)] = 23736, - [SMALL_STATE(858)] = 23770, - [SMALL_STATE(859)] = 23798, - [SMALL_STATE(860)] = 23828, - [SMALL_STATE(861)] = 23864, - [SMALL_STATE(862)] = 23900, - [SMALL_STATE(863)] = 23933, - [SMALL_STATE(864)] = 23966, - [SMALL_STATE(865)] = 23997, - [SMALL_STATE(866)] = 24028, - [SMALL_STATE(867)] = 24059, - [SMALL_STATE(868)] = 24090, - [SMALL_STATE(869)] = 24121, - [SMALL_STATE(870)] = 24152, - [SMALL_STATE(871)] = 24185, - [SMALL_STATE(872)] = 24212, - [SMALL_STATE(873)] = 24245, - [SMALL_STATE(874)] = 24276, - [SMALL_STATE(875)] = 24307, - [SMALL_STATE(876)] = 24335, - [SMALL_STATE(877)] = 24367, - [SMALL_STATE(878)] = 24399, - [SMALL_STATE(879)] = 24425, - [SMALL_STATE(880)] = 24455, - [SMALL_STATE(881)] = 24483, - [SMALL_STATE(882)] = 24509, - [SMALL_STATE(883)] = 24533, - [SMALL_STATE(884)] = 24559, - [SMALL_STATE(885)] = 24587, - [SMALL_STATE(886)] = 24619, - [SMALL_STATE(887)] = 24648, - [SMALL_STATE(888)] = 24673, - [SMALL_STATE(889)] = 24696, - [SMALL_STATE(890)] = 24719, - [SMALL_STATE(891)] = 24754, - [SMALL_STATE(892)] = 24775, - [SMALL_STATE(893)] = 24810, - [SMALL_STATE(894)] = 24835, - [SMALL_STATE(895)] = 24856, - [SMALL_STATE(896)] = 24879, - [SMALL_STATE(897)] = 24904, - [SMALL_STATE(898)] = 24924, - [SMALL_STATE(899)] = 24944, - [SMALL_STATE(900)] = 24960, - [SMALL_STATE(901)] = 24976, - [SMALL_STATE(902)] = 24996, - [SMALL_STATE(903)] = 25018, - [SMALL_STATE(904)] = 25038, - [SMALL_STATE(905)] = 25058, - [SMALL_STATE(906)] = 25078, - [SMALL_STATE(907)] = 25094, - [SMALL_STATE(908)] = 25122, - [SMALL_STATE(909)] = 25142, - [SMALL_STATE(910)] = 25162, - [SMALL_STATE(911)] = 25182, - [SMALL_STATE(912)] = 25202, - [SMALL_STATE(913)] = 25222, - [SMALL_STATE(914)] = 25242, - [SMALL_STATE(915)] = 25262, - [SMALL_STATE(916)] = 25282, - [SMALL_STATE(917)] = 25302, - [SMALL_STATE(918)] = 25322, - [SMALL_STATE(919)] = 25342, - [SMALL_STATE(920)] = 25361, - [SMALL_STATE(921)] = 25390, - [SMALL_STATE(922)] = 25409, - [SMALL_STATE(923)] = 25438, - [SMALL_STATE(924)] = 25467, - [SMALL_STATE(925)] = 25496, - [SMALL_STATE(926)] = 25515, - [SMALL_STATE(927)] = 25529, - [SMALL_STATE(928)] = 25553, - [SMALL_STATE(929)] = 25567, - [SMALL_STATE(930)] = 25589, - [SMALL_STATE(931)] = 25609, - [SMALL_STATE(932)] = 25623, - [SMALL_STATE(933)] = 25645, - [SMALL_STATE(934)] = 25665, - [SMALL_STATE(935)] = 25679, - [SMALL_STATE(936)] = 25703, - [SMALL_STATE(937)] = 25717, - [SMALL_STATE(938)] = 25738, - [SMALL_STATE(939)] = 25761, - [SMALL_STATE(940)] = 25784, - [SMALL_STATE(941)] = 25797, - [SMALL_STATE(942)] = 25820, - [SMALL_STATE(943)] = 25837, - [SMALL_STATE(944)] = 25860, - [SMALL_STATE(945)] = 25877, - [SMALL_STATE(946)] = 25894, - [SMALL_STATE(947)] = 25915, - [SMALL_STATE(948)] = 25932, - [SMALL_STATE(949)] = 25949, - [SMALL_STATE(950)] = 25966, - [SMALL_STATE(951)] = 25983, - [SMALL_STATE(952)] = 26000, - [SMALL_STATE(953)] = 26013, - [SMALL_STATE(954)] = 26026, - [SMALL_STATE(955)] = 26049, - [SMALL_STATE(956)] = 26062, - [SMALL_STATE(957)] = 26083, - [SMALL_STATE(958)] = 26100, - [SMALL_STATE(959)] = 26121, - [SMALL_STATE(960)] = 26134, - [SMALL_STATE(961)] = 26155, - [SMALL_STATE(962)] = 26172, - [SMALL_STATE(963)] = 26189, - [SMALL_STATE(964)] = 26206, - [SMALL_STATE(965)] = 26219, - [SMALL_STATE(966)] = 26232, - [SMALL_STATE(967)] = 26249, - [SMALL_STATE(968)] = 26262, - [SMALL_STATE(969)] = 26275, - [SMALL_STATE(970)] = 26288, - [SMALL_STATE(971)] = 26301, - [SMALL_STATE(972)] = 26314, - [SMALL_STATE(973)] = 26327, - [SMALL_STATE(974)] = 26350, - [SMALL_STATE(975)] = 26367, - [SMALL_STATE(976)] = 26380, - [SMALL_STATE(977)] = 26401, - [SMALL_STATE(978)] = 26414, - [SMALL_STATE(979)] = 26431, - [SMALL_STATE(980)] = 26444, - [SMALL_STATE(981)] = 26460, - [SMALL_STATE(982)] = 26476, - [SMALL_STATE(983)] = 26496, - [SMALL_STATE(984)] = 26512, - [SMALL_STATE(985)] = 26532, - [SMALL_STATE(986)] = 26552, - [SMALL_STATE(987)] = 26568, - [SMALL_STATE(988)] = 26584, - [SMALL_STATE(989)] = 26602, - [SMALL_STATE(990)] = 26622, - [SMALL_STATE(991)] = 26642, - [SMALL_STATE(992)] = 26662, - [SMALL_STATE(993)] = 26682, - [SMALL_STATE(994)] = 26702, - [SMALL_STATE(995)] = 26722, - [SMALL_STATE(996)] = 26734, - [SMALL_STATE(997)] = 26754, - [SMALL_STATE(998)] = 26774, - [SMALL_STATE(999)] = 26794, - [SMALL_STATE(1000)] = 26808, - [SMALL_STATE(1001)] = 26824, - [SMALL_STATE(1002)] = 26844, - [SMALL_STATE(1003)] = 26864, - [SMALL_STATE(1004)] = 26880, - [SMALL_STATE(1005)] = 26896, - [SMALL_STATE(1006)] = 26916, - [SMALL_STATE(1007)] = 26931, - [SMALL_STATE(1008)] = 26948, - [SMALL_STATE(1009)] = 26963, - [SMALL_STATE(1010)] = 26978, - [SMALL_STATE(1011)] = 26993, - [SMALL_STATE(1012)] = 27010, - [SMALL_STATE(1013)] = 27021, - [SMALL_STATE(1014)] = 27038, - [SMALL_STATE(1015)] = 27053, - [SMALL_STATE(1016)] = 27070, - [SMALL_STATE(1017)] = 27087, - [SMALL_STATE(1018)] = 27104, - [SMALL_STATE(1019)] = 27121, - [SMALL_STATE(1020)] = 27138, - [SMALL_STATE(1021)] = 27155, - [SMALL_STATE(1022)] = 27172, - [SMALL_STATE(1023)] = 27187, - [SMALL_STATE(1024)] = 27204, - [SMALL_STATE(1025)] = 27221, - [SMALL_STATE(1026)] = 27238, - [SMALL_STATE(1027)] = 27253, - [SMALL_STATE(1028)] = 27266, - [SMALL_STATE(1029)] = 27283, - [SMALL_STATE(1030)] = 27294, - [SMALL_STATE(1031)] = 27309, - [SMALL_STATE(1032)] = 27324, - [SMALL_STATE(1033)] = 27341, - [SMALL_STATE(1034)] = 27354, - [SMALL_STATE(1035)] = 27371, - [SMALL_STATE(1036)] = 27388, - [SMALL_STATE(1037)] = 27405, - [SMALL_STATE(1038)] = 27420, - [SMALL_STATE(1039)] = 27435, - [SMALL_STATE(1040)] = 27450, - [SMALL_STATE(1041)] = 27461, - [SMALL_STATE(1042)] = 27472, - [SMALL_STATE(1043)] = 27487, - [SMALL_STATE(1044)] = 27502, - [SMALL_STATE(1045)] = 27517, - [SMALL_STATE(1046)] = 27534, - [SMALL_STATE(1047)] = 27549, - [SMALL_STATE(1048)] = 27566, - [SMALL_STATE(1049)] = 27583, - [SMALL_STATE(1050)] = 27600, - [SMALL_STATE(1051)] = 27615, - [SMALL_STATE(1052)] = 27632, - [SMALL_STATE(1053)] = 27649, - [SMALL_STATE(1054)] = 27660, - [SMALL_STATE(1055)] = 27675, - [SMALL_STATE(1056)] = 27692, - [SMALL_STATE(1057)] = 27709, - [SMALL_STATE(1058)] = 27726, - [SMALL_STATE(1059)] = 27741, - [SMALL_STATE(1060)] = 27756, - [SMALL_STATE(1061)] = 27773, - [SMALL_STATE(1062)] = 27788, - [SMALL_STATE(1063)] = 27805, - [SMALL_STATE(1064)] = 27819, - [SMALL_STATE(1065)] = 27833, - [SMALL_STATE(1066)] = 27847, - [SMALL_STATE(1067)] = 27861, - [SMALL_STATE(1068)] = 27875, - [SMALL_STATE(1069)] = 27889, - [SMALL_STATE(1070)] = 27903, - [SMALL_STATE(1071)] = 27917, - [SMALL_STATE(1072)] = 27931, - [SMALL_STATE(1073)] = 27941, - [SMALL_STATE(1074)] = 27955, - [SMALL_STATE(1075)] = 27969, - [SMALL_STATE(1076)] = 27983, - [SMALL_STATE(1077)] = 27997, - [SMALL_STATE(1078)] = 28011, - [SMALL_STATE(1079)] = 28025, - [SMALL_STATE(1080)] = 28039, - [SMALL_STATE(1081)] = 28053, - [SMALL_STATE(1082)] = 28067, - [SMALL_STATE(1083)] = 28081, - [SMALL_STATE(1084)] = 28095, - [SMALL_STATE(1085)] = 28109, - [SMALL_STATE(1086)] = 28119, - [SMALL_STATE(1087)] = 28133, - [SMALL_STATE(1088)] = 28147, - [SMALL_STATE(1089)] = 28161, - [SMALL_STATE(1090)] = 28175, - [SMALL_STATE(1091)] = 28189, - [SMALL_STATE(1092)] = 28199, - [SMALL_STATE(1093)] = 28209, - [SMALL_STATE(1094)] = 28223, - [SMALL_STATE(1095)] = 28237, - [SMALL_STATE(1096)] = 28251, - [SMALL_STATE(1097)] = 28265, - [SMALL_STATE(1098)] = 28279, - [SMALL_STATE(1099)] = 28293, - [SMALL_STATE(1100)] = 28307, - [SMALL_STATE(1101)] = 28321, - [SMALL_STATE(1102)] = 28335, - [SMALL_STATE(1103)] = 28349, - [SMALL_STATE(1104)] = 28363, - [SMALL_STATE(1105)] = 28377, - [SMALL_STATE(1106)] = 28391, - [SMALL_STATE(1107)] = 28405, - [SMALL_STATE(1108)] = 28419, - [SMALL_STATE(1109)] = 28429, - [SMALL_STATE(1110)] = 28443, - [SMALL_STATE(1111)] = 28457, - [SMALL_STATE(1112)] = 28467, - [SMALL_STATE(1113)] = 28481, - [SMALL_STATE(1114)] = 28495, - [SMALL_STATE(1115)] = 28509, - [SMALL_STATE(1116)] = 28523, - [SMALL_STATE(1117)] = 28535, - [SMALL_STATE(1118)] = 28549, - [SMALL_STATE(1119)] = 28563, - [SMALL_STATE(1120)] = 28577, - [SMALL_STATE(1121)] = 28589, - [SMALL_STATE(1122)] = 28603, - [SMALL_STATE(1123)] = 28617, - [SMALL_STATE(1124)] = 28631, - [SMALL_STATE(1125)] = 28645, - [SMALL_STATE(1126)] = 28659, - [SMALL_STATE(1127)] = 28673, - [SMALL_STATE(1128)] = 28687, - [SMALL_STATE(1129)] = 28701, - [SMALL_STATE(1130)] = 28715, - [SMALL_STATE(1131)] = 28729, - [SMALL_STATE(1132)] = 28743, - [SMALL_STATE(1133)] = 28753, - [SMALL_STATE(1134)] = 28767, - [SMALL_STATE(1135)] = 28777, - [SMALL_STATE(1136)] = 28791, - [SMALL_STATE(1137)] = 28805, - [SMALL_STATE(1138)] = 28819, - [SMALL_STATE(1139)] = 28833, - [SMALL_STATE(1140)] = 28847, - [SMALL_STATE(1141)] = 28861, - [SMALL_STATE(1142)] = 28871, - [SMALL_STATE(1143)] = 28885, - [SMALL_STATE(1144)] = 28899, - [SMALL_STATE(1145)] = 28909, - [SMALL_STATE(1146)] = 28923, - [SMALL_STATE(1147)] = 28937, - [SMALL_STATE(1148)] = 28951, - [SMALL_STATE(1149)] = 28965, - [SMALL_STATE(1150)] = 28979, - [SMALL_STATE(1151)] = 28989, - [SMALL_STATE(1152)] = 29003, - [SMALL_STATE(1153)] = 29017, - [SMALL_STATE(1154)] = 29031, - [SMALL_STATE(1155)] = 29045, - [SMALL_STATE(1156)] = 29059, - [SMALL_STATE(1157)] = 29073, - [SMALL_STATE(1158)] = 29087, - [SMALL_STATE(1159)] = 29101, - [SMALL_STATE(1160)] = 29115, - [SMALL_STATE(1161)] = 29129, - [SMALL_STATE(1162)] = 29143, - [SMALL_STATE(1163)] = 29157, - [SMALL_STATE(1164)] = 29167, - [SMALL_STATE(1165)] = 29181, - [SMALL_STATE(1166)] = 29195, - [SMALL_STATE(1167)] = 29209, - [SMALL_STATE(1168)] = 29223, - [SMALL_STATE(1169)] = 29237, - [SMALL_STATE(1170)] = 29251, - [SMALL_STATE(1171)] = 29265, - [SMALL_STATE(1172)] = 29279, - [SMALL_STATE(1173)] = 29293, - [SMALL_STATE(1174)] = 29307, - [SMALL_STATE(1175)] = 29321, - [SMALL_STATE(1176)] = 29335, - [SMALL_STATE(1177)] = 29346, - [SMALL_STATE(1178)] = 29355, - [SMALL_STATE(1179)] = 29366, - [SMALL_STATE(1180)] = 29377, - [SMALL_STATE(1181)] = 29388, - [SMALL_STATE(1182)] = 29397, - [SMALL_STATE(1183)] = 29408, - [SMALL_STATE(1184)] = 29419, - [SMALL_STATE(1185)] = 29430, - [SMALL_STATE(1186)] = 29441, - [SMALL_STATE(1187)] = 29452, - [SMALL_STATE(1188)] = 29463, - [SMALL_STATE(1189)] = 29474, - [SMALL_STATE(1190)] = 29485, - [SMALL_STATE(1191)] = 29496, - [SMALL_STATE(1192)] = 29507, - [SMALL_STATE(1193)] = 29518, - [SMALL_STATE(1194)] = 29527, - [SMALL_STATE(1195)] = 29538, - [SMALL_STATE(1196)] = 29549, - [SMALL_STATE(1197)] = 29558, - [SMALL_STATE(1198)] = 29567, - [SMALL_STATE(1199)] = 29578, - [SMALL_STATE(1200)] = 29589, - [SMALL_STATE(1201)] = 29600, - [SMALL_STATE(1202)] = 29609, - [SMALL_STATE(1203)] = 29618, - [SMALL_STATE(1204)] = 29627, - [SMALL_STATE(1205)] = 29638, - [SMALL_STATE(1206)] = 29649, - [SMALL_STATE(1207)] = 29660, - [SMALL_STATE(1208)] = 29671, - [SMALL_STATE(1209)] = 29682, - [SMALL_STATE(1210)] = 29691, - [SMALL_STATE(1211)] = 29702, - [SMALL_STATE(1212)] = 29711, - [SMALL_STATE(1213)] = 29722, - [SMALL_STATE(1214)] = 29731, - [SMALL_STATE(1215)] = 29742, - [SMALL_STATE(1216)] = 29753, - [SMALL_STATE(1217)] = 29764, - [SMALL_STATE(1218)] = 29775, - [SMALL_STATE(1219)] = 29784, - [SMALL_STATE(1220)] = 29795, - [SMALL_STATE(1221)] = 29806, - [SMALL_STATE(1222)] = 29817, - [SMALL_STATE(1223)] = 29826, - [SMALL_STATE(1224)] = 29835, - [SMALL_STATE(1225)] = 29846, - [SMALL_STATE(1226)] = 29855, - [SMALL_STATE(1227)] = 29866, - [SMALL_STATE(1228)] = 29875, - [SMALL_STATE(1229)] = 29886, - [SMALL_STATE(1230)] = 29897, - [SMALL_STATE(1231)] = 29908, - [SMALL_STATE(1232)] = 29919, - [SMALL_STATE(1233)] = 29930, - [SMALL_STATE(1234)] = 29941, - [SMALL_STATE(1235)] = 29950, - [SMALL_STATE(1236)] = 29959, - [SMALL_STATE(1237)] = 29968, - [SMALL_STATE(1238)] = 29977, - [SMALL_STATE(1239)] = 29986, - [SMALL_STATE(1240)] = 29997, - [SMALL_STATE(1241)] = 30008, - [SMALL_STATE(1242)] = 30019, - [SMALL_STATE(1243)] = 30030, - [SMALL_STATE(1244)] = 30041, - [SMALL_STATE(1245)] = 30052, - [SMALL_STATE(1246)] = 30063, - [SMALL_STATE(1247)] = 30074, - [SMALL_STATE(1248)] = 30083, - [SMALL_STATE(1249)] = 30094, - [SMALL_STATE(1250)] = 30105, - [SMALL_STATE(1251)] = 30114, - [SMALL_STATE(1252)] = 30123, - [SMALL_STATE(1253)] = 30132, - [SMALL_STATE(1254)] = 30143, - [SMALL_STATE(1255)] = 30154, - [SMALL_STATE(1256)] = 30163, - [SMALL_STATE(1257)] = 30172, - [SMALL_STATE(1258)] = 30183, - [SMALL_STATE(1259)] = 30194, - [SMALL_STATE(1260)] = 30205, - [SMALL_STATE(1261)] = 30216, - [SMALL_STATE(1262)] = 30227, - [SMALL_STATE(1263)] = 30238, - [SMALL_STATE(1264)] = 30249, - [SMALL_STATE(1265)] = 30258, - [SMALL_STATE(1266)] = 30269, - [SMALL_STATE(1267)] = 30280, - [SMALL_STATE(1268)] = 30289, - [SMALL_STATE(1269)] = 30300, - [SMALL_STATE(1270)] = 30311, - [SMALL_STATE(1271)] = 30322, - [SMALL_STATE(1272)] = 30333, - [SMALL_STATE(1273)] = 30344, - [SMALL_STATE(1274)] = 30353, - [SMALL_STATE(1275)] = 30364, - [SMALL_STATE(1276)] = 30375, - [SMALL_STATE(1277)] = 30386, - [SMALL_STATE(1278)] = 30395, - [SMALL_STATE(1279)] = 30406, - [SMALL_STATE(1280)] = 30417, - [SMALL_STATE(1281)] = 30428, - [SMALL_STATE(1282)] = 30439, - [SMALL_STATE(1283)] = 30450, - [SMALL_STATE(1284)] = 30461, - [SMALL_STATE(1285)] = 30472, - [SMALL_STATE(1286)] = 30481, - [SMALL_STATE(1287)] = 30492, - [SMALL_STATE(1288)] = 30501, - [SMALL_STATE(1289)] = 30510, - [SMALL_STATE(1290)] = 30521, - [SMALL_STATE(1291)] = 30532, - [SMALL_STATE(1292)] = 30541, - [SMALL_STATE(1293)] = 30550, - [SMALL_STATE(1294)] = 30561, - [SMALL_STATE(1295)] = 30572, - [SMALL_STATE(1296)] = 30581, - [SMALL_STATE(1297)] = 30590, - [SMALL_STATE(1298)] = 30599, - [SMALL_STATE(1299)] = 30607, - [SMALL_STATE(1300)] = 30615, - [SMALL_STATE(1301)] = 30623, - [SMALL_STATE(1302)] = 30631, - [SMALL_STATE(1303)] = 30639, - [SMALL_STATE(1304)] = 30647, - [SMALL_STATE(1305)] = 30655, - [SMALL_STATE(1306)] = 30663, - [SMALL_STATE(1307)] = 30671, - [SMALL_STATE(1308)] = 30679, - [SMALL_STATE(1309)] = 30687, - [SMALL_STATE(1310)] = 30695, - [SMALL_STATE(1311)] = 30703, - [SMALL_STATE(1312)] = 30711, - [SMALL_STATE(1313)] = 30719, - [SMALL_STATE(1314)] = 30727, - [SMALL_STATE(1315)] = 30735, - [SMALL_STATE(1316)] = 30743, - [SMALL_STATE(1317)] = 30751, - [SMALL_STATE(1318)] = 30759, - [SMALL_STATE(1319)] = 30767, - [SMALL_STATE(1320)] = 30775, - [SMALL_STATE(1321)] = 30783, - [SMALL_STATE(1322)] = 30791, - [SMALL_STATE(1323)] = 30799, - [SMALL_STATE(1324)] = 30807, - [SMALL_STATE(1325)] = 30815, - [SMALL_STATE(1326)] = 30823, - [SMALL_STATE(1327)] = 30831, - [SMALL_STATE(1328)] = 30839, - [SMALL_STATE(1329)] = 30847, - [SMALL_STATE(1330)] = 30855, - [SMALL_STATE(1331)] = 30863, - [SMALL_STATE(1332)] = 30871, - [SMALL_STATE(1333)] = 30879, - [SMALL_STATE(1334)] = 30887, - [SMALL_STATE(1335)] = 30895, - [SMALL_STATE(1336)] = 30903, - [SMALL_STATE(1337)] = 30911, - [SMALL_STATE(1338)] = 30919, - [SMALL_STATE(1339)] = 30927, - [SMALL_STATE(1340)] = 30935, - [SMALL_STATE(1341)] = 30943, - [SMALL_STATE(1342)] = 30951, - [SMALL_STATE(1343)] = 30959, - [SMALL_STATE(1344)] = 30967, - [SMALL_STATE(1345)] = 30975, - [SMALL_STATE(1346)] = 30983, - [SMALL_STATE(1347)] = 30991, - [SMALL_STATE(1348)] = 30999, - [SMALL_STATE(1349)] = 31007, - [SMALL_STATE(1350)] = 31015, - [SMALL_STATE(1351)] = 31023, - [SMALL_STATE(1352)] = 31031, - [SMALL_STATE(1353)] = 31039, - [SMALL_STATE(1354)] = 31047, - [SMALL_STATE(1355)] = 31055, - [SMALL_STATE(1356)] = 31063, - [SMALL_STATE(1357)] = 31071, - [SMALL_STATE(1358)] = 31079, - [SMALL_STATE(1359)] = 31087, - [SMALL_STATE(1360)] = 31095, - [SMALL_STATE(1361)] = 31103, - [SMALL_STATE(1362)] = 31111, - [SMALL_STATE(1363)] = 31119, - [SMALL_STATE(1364)] = 31127, - [SMALL_STATE(1365)] = 31135, - [SMALL_STATE(1366)] = 31143, - [SMALL_STATE(1367)] = 31151, - [SMALL_STATE(1368)] = 31159, - [SMALL_STATE(1369)] = 31167, - [SMALL_STATE(1370)] = 31175, - [SMALL_STATE(1371)] = 31183, - [SMALL_STATE(1372)] = 31191, - [SMALL_STATE(1373)] = 31199, - [SMALL_STATE(1374)] = 31207, - [SMALL_STATE(1375)] = 31215, - [SMALL_STATE(1376)] = 31223, - [SMALL_STATE(1377)] = 31231, + [SMALL_STATE(395)] = 0, + [SMALL_STATE(396)] = 119, + [SMALL_STATE(397)] = 238, + [SMALL_STATE(398)] = 357, + [SMALL_STATE(399)] = 476, + [SMALL_STATE(400)] = 595, + [SMALL_STATE(401)] = 711, + [SMALL_STATE(402)] = 827, + [SMALL_STATE(403)] = 934, + [SMALL_STATE(404)] = 1041, + [SMALL_STATE(405)] = 1148, + [SMALL_STATE(406)] = 1231, + [SMALL_STATE(407)] = 1320, + [SMALL_STATE(408)] = 1407, + [SMALL_STATE(409)] = 1501, + [SMALL_STATE(410)] = 1595, + [SMALL_STATE(411)] = 1689, + [SMALL_STATE(412)] = 1770, + [SMALL_STATE(413)] = 1831, + [SMALL_STATE(414)] = 1912, + [SMALL_STATE(415)] = 1973, + [SMALL_STATE(416)] = 2053, + [SMALL_STATE(417)] = 2133, + [SMALL_STATE(418)] = 2213, + [SMALL_STATE(419)] = 2293, + [SMALL_STATE(420)] = 2348, + [SMALL_STATE(421)] = 2403, + [SMALL_STATE(422)] = 2458, + [SMALL_STATE(423)] = 2533, + [SMALL_STATE(424)] = 2591, + [SMALL_STATE(425)] = 2664, + [SMALL_STATE(426)] = 2728, + [SMALL_STATE(427)] = 2792, + [SMALL_STATE(428)] = 2856, + [SMALL_STATE(429)] = 2920, + [SMALL_STATE(430)] = 2975, + [SMALL_STATE(431)] = 3057, + [SMALL_STATE(432)] = 3107, + [SMALL_STATE(433)] = 3165, + [SMALL_STATE(434)] = 3223, + [SMALL_STATE(435)] = 3281, + [SMALL_STATE(436)] = 3340, + [SMALL_STATE(437)] = 3399, + [SMALL_STATE(438)] = 3473, + [SMALL_STATE(439)] = 3544, + [SMALL_STATE(440)] = 3601, + [SMALL_STATE(441)] = 3674, + [SMALL_STATE(442)] = 3737, + [SMALL_STATE(443)] = 3789, + [SMALL_STATE(444)] = 3841, + [SMALL_STATE(445)] = 3886, + [SMALL_STATE(446)] = 3931, + [SMALL_STATE(447)] = 3980, + [SMALL_STATE(448)] = 4029, + [SMALL_STATE(449)] = 4078, + [SMALL_STATE(450)] = 4123, + [SMALL_STATE(451)] = 4172, + [SMALL_STATE(452)] = 4221, + [SMALL_STATE(453)] = 4266, + [SMALL_STATE(454)] = 4315, + [SMALL_STATE(455)] = 4360, + [SMALL_STATE(456)] = 4405, + [SMALL_STATE(457)] = 4456, + [SMALL_STATE(458)] = 4505, + [SMALL_STATE(459)] = 4554, + [SMALL_STATE(460)] = 4603, + [SMALL_STATE(461)] = 4654, + [SMALL_STATE(462)] = 4703, + [SMALL_STATE(463)] = 4752, + [SMALL_STATE(464)] = 4801, + [SMALL_STATE(465)] = 4850, + [SMALL_STATE(466)] = 4895, + [SMALL_STATE(467)] = 4944, + [SMALL_STATE(468)] = 4988, + [SMALL_STATE(469)] = 5032, + [SMALL_STATE(470)] = 5084, + [SMALL_STATE(471)] = 5128, + [SMALL_STATE(472)] = 5172, + [SMALL_STATE(473)] = 5216, + [SMALL_STATE(474)] = 5260, + [SMALL_STATE(475)] = 5304, + [SMALL_STATE(476)] = 5348, + [SMALL_STATE(477)] = 5394, + [SMALL_STATE(478)] = 5438, + [SMALL_STATE(479)] = 5482, + [SMALL_STATE(480)] = 5526, + [SMALL_STATE(481)] = 5578, + [SMALL_STATE(482)] = 5627, + [SMALL_STATE(483)] = 5670, + [SMALL_STATE(484)] = 5713, + [SMALL_STATE(485)] = 5756, + [SMALL_STATE(486)] = 5799, + [SMALL_STATE(487)] = 5842, + [SMALL_STATE(488)] = 5885, + [SMALL_STATE(489)] = 5928, + [SMALL_STATE(490)] = 5971, + [SMALL_STATE(491)] = 6014, + [SMALL_STATE(492)] = 6057, + [SMALL_STATE(493)] = 6100, + [SMALL_STATE(494)] = 6143, + [SMALL_STATE(495)] = 6186, + [SMALL_STATE(496)] = 6229, + [SMALL_STATE(497)] = 6272, + [SMALL_STATE(498)] = 6315, + [SMALL_STATE(499)] = 6358, + [SMALL_STATE(500)] = 6401, + [SMALL_STATE(501)] = 6444, + [SMALL_STATE(502)] = 6487, + [SMALL_STATE(503)] = 6530, + [SMALL_STATE(504)] = 6573, + [SMALL_STATE(505)] = 6616, + [SMALL_STATE(506)] = 6659, + [SMALL_STATE(507)] = 6702, + [SMALL_STATE(508)] = 6761, + [SMALL_STATE(509)] = 6804, + [SMALL_STATE(510)] = 6847, + [SMALL_STATE(511)] = 6890, + [SMALL_STATE(512)] = 6933, + [SMALL_STATE(513)] = 6976, + [SMALL_STATE(514)] = 7019, + [SMALL_STATE(515)] = 7062, + [SMALL_STATE(516)] = 7109, + [SMALL_STATE(517)] = 7152, + [SMALL_STATE(518)] = 7201, + [SMALL_STATE(519)] = 7244, + [SMALL_STATE(520)] = 7287, + [SMALL_STATE(521)] = 7330, + [SMALL_STATE(522)] = 7373, + [SMALL_STATE(523)] = 7416, + [SMALL_STATE(524)] = 7459, + [SMALL_STATE(525)] = 7502, + [SMALL_STATE(526)] = 7551, + [SMALL_STATE(527)] = 7594, + [SMALL_STATE(528)] = 7637, + [SMALL_STATE(529)] = 7680, + [SMALL_STATE(530)] = 7723, + [SMALL_STATE(531)] = 7766, + [SMALL_STATE(532)] = 7809, + [SMALL_STATE(533)] = 7852, + [SMALL_STATE(534)] = 7895, + [SMALL_STATE(535)] = 7938, + [SMALL_STATE(536)] = 7981, + [SMALL_STATE(537)] = 8024, + [SMALL_STATE(538)] = 8067, + [SMALL_STATE(539)] = 8110, + [SMALL_STATE(540)] = 8153, + [SMALL_STATE(541)] = 8196, + [SMALL_STATE(542)] = 8239, + [SMALL_STATE(543)] = 8282, + [SMALL_STATE(544)] = 8325, + [SMALL_STATE(545)] = 8368, + [SMALL_STATE(546)] = 8411, + [SMALL_STATE(547)] = 8454, + [SMALL_STATE(548)] = 8497, + [SMALL_STATE(549)] = 8540, + [SMALL_STATE(550)] = 8583, + [SMALL_STATE(551)] = 8626, + [SMALL_STATE(552)] = 8672, + [SMALL_STATE(553)] = 8714, + [SMALL_STATE(554)] = 8760, + [SMALL_STATE(555)] = 8802, + [SMALL_STATE(556)] = 8843, + [SMALL_STATE(557)] = 8886, + [SMALL_STATE(558)] = 8929, + [SMALL_STATE(559)] = 8969, + [SMALL_STATE(560)] = 9009, + [SMALL_STATE(561)] = 9051, + [SMALL_STATE(562)] = 9091, + [SMALL_STATE(563)] = 9131, + [SMALL_STATE(564)] = 9171, + [SMALL_STATE(565)] = 9211, + [SMALL_STATE(566)] = 9251, + [SMALL_STATE(567)] = 9291, + [SMALL_STATE(568)] = 9331, + [SMALL_STATE(569)] = 9371, + [SMALL_STATE(570)] = 9413, + [SMALL_STATE(571)] = 9453, + [SMALL_STATE(572)] = 9493, + [SMALL_STATE(573)] = 9533, + [SMALL_STATE(574)] = 9573, + [SMALL_STATE(575)] = 9613, + [SMALL_STATE(576)] = 9653, + [SMALL_STATE(577)] = 9693, + [SMALL_STATE(578)] = 9733, + [SMALL_STATE(579)] = 9773, + [SMALL_STATE(580)] = 9813, + [SMALL_STATE(581)] = 9853, + [SMALL_STATE(582)] = 9893, + [SMALL_STATE(583)] = 9933, + [SMALL_STATE(584)] = 9990, + [SMALL_STATE(585)] = 10055, + [SMALL_STATE(586)] = 10100, + [SMALL_STATE(587)] = 10159, + [SMALL_STATE(588)] = 10222, + [SMALL_STATE(589)] = 10283, + [SMALL_STATE(590)] = 10334, + [SMALL_STATE(591)] = 10377, + [SMALL_STATE(592)] = 10446, + [SMALL_STATE(593)] = 10515, + [SMALL_STATE(594)] = 10584, + [SMALL_STATE(595)] = 10647, + [SMALL_STATE(596)] = 10694, + [SMALL_STATE(597)] = 10770, + [SMALL_STATE(598)] = 10814, + [SMALL_STATE(599)] = 10856, + [SMALL_STATE(600)] = 10900, + [SMALL_STATE(601)] = 10938, + [SMALL_STATE(602)] = 10976, + [SMALL_STATE(603)] = 11014, + [SMALL_STATE(604)] = 11058, + [SMALL_STATE(605)] = 11097, + [SMALL_STATE(606)] = 11134, + [SMALL_STATE(607)] = 11209, + [SMALL_STATE(608)] = 11275, + [SMALL_STATE(609)] = 11341, + [SMALL_STATE(610)] = 11389, + [SMALL_STATE(611)] = 11431, + [SMALL_STATE(612)] = 11485, + [SMALL_STATE(613)] = 11545, + [SMALL_STATE(614)] = 11589, + [SMALL_STATE(615)] = 11655, + [SMALL_STATE(616)] = 11715, + [SMALL_STATE(617)] = 11773, + [SMALL_STATE(618)] = 11829, + [SMALL_STATE(619)] = 11871, + [SMALL_STATE(620)] = 11937, + [SMALL_STATE(621)] = 12003, + [SMALL_STATE(622)] = 12065, + [SMALL_STATE(623)] = 12131, + [SMALL_STATE(624)] = 12200, + [SMALL_STATE(625)] = 12235, + [SMALL_STATE(626)] = 12304, + [SMALL_STATE(627)] = 12347, + [SMALL_STATE(628)] = 12416, + [SMALL_STATE(629)] = 12451, + [SMALL_STATE(630)] = 12486, + [SMALL_STATE(631)] = 12523, + [SMALL_STATE(632)] = 12566, + [SMALL_STATE(633)] = 12631, + [SMALL_STATE(634)] = 12690, + [SMALL_STATE(635)] = 12759, + [SMALL_STATE(636)] = 12828, + [SMALL_STATE(637)] = 12897, + [SMALL_STATE(638)] = 12966, + [SMALL_STATE(639)] = 13035, + [SMALL_STATE(640)] = 13104, + [SMALL_STATE(641)] = 13173, + [SMALL_STATE(642)] = 13242, + [SMALL_STATE(643)] = 13311, + [SMALL_STATE(644)] = 13380, + [SMALL_STATE(645)] = 13449, + [SMALL_STATE(646)] = 13518, + [SMALL_STATE(647)] = 13553, + [SMALL_STATE(648)] = 13606, + [SMALL_STATE(649)] = 13675, + [SMALL_STATE(650)] = 13744, + [SMALL_STATE(651)] = 13813, + [SMALL_STATE(652)] = 13882, + [SMALL_STATE(653)] = 13951, + [SMALL_STATE(654)] = 14010, + [SMALL_STATE(655)] = 14079, + [SMALL_STATE(656)] = 14148, + [SMALL_STATE(657)] = 14217, + [SMALL_STATE(658)] = 14286, + [SMALL_STATE(659)] = 14355, + [SMALL_STATE(660)] = 14424, + [SMALL_STATE(661)] = 14493, + [SMALL_STATE(662)] = 14562, + [SMALL_STATE(663)] = 14631, + [SMALL_STATE(664)] = 14695, + [SMALL_STATE(665)] = 14759, + [SMALL_STATE(666)] = 14815, + [SMALL_STATE(667)] = 14879, + [SMALL_STATE(668)] = 14943, + [SMALL_STATE(669)] = 15009, + [SMALL_STATE(670)] = 15067, + [SMALL_STATE(671)] = 15117, + [SMALL_STATE(672)] = 15181, + [SMALL_STATE(673)] = 15219, + [SMALL_STATE(674)] = 15283, + [SMALL_STATE(675)] = 15347, + [SMALL_STATE(676)] = 15411, + [SMALL_STATE(677)] = 15461, + [SMALL_STATE(678)] = 15524, + [SMALL_STATE(679)] = 15579, + [SMALL_STATE(680)] = 15642, + [SMALL_STATE(681)] = 15705, + [SMALL_STATE(682)] = 15768, + [SMALL_STATE(683)] = 15831, + [SMALL_STATE(684)] = 15894, + [SMALL_STATE(685)] = 15957, + [SMALL_STATE(686)] = 16012, + [SMALL_STATE(687)] = 16075, + [SMALL_STATE(688)] = 16138, + [SMALL_STATE(689)] = 16199, + [SMALL_STATE(690)] = 16262, + [SMALL_STATE(691)] = 16325, + [SMALL_STATE(692)] = 16388, + [SMALL_STATE(693)] = 16451, + [SMALL_STATE(694)] = 16514, + [SMALL_STATE(695)] = 16577, + [SMALL_STATE(696)] = 16632, + [SMALL_STATE(697)] = 16695, + [SMALL_STATE(698)] = 16758, + [SMALL_STATE(699)] = 16821, + [SMALL_STATE(700)] = 16884, + [SMALL_STATE(701)] = 16947, + [SMALL_STATE(702)] = 17002, + [SMALL_STATE(703)] = 17065, + [SMALL_STATE(704)] = 17128, + [SMALL_STATE(705)] = 17191, + [SMALL_STATE(706)] = 17254, + [SMALL_STATE(707)] = 17317, + [SMALL_STATE(708)] = 17380, + [SMALL_STATE(709)] = 17443, + [SMALL_STATE(710)] = 17506, + [SMALL_STATE(711)] = 17569, + [SMALL_STATE(712)] = 17630, + [SMALL_STATE(713)] = 17693, + [SMALL_STATE(714)] = 17756, + [SMALL_STATE(715)] = 17811, + [SMALL_STATE(716)] = 17874, + [SMALL_STATE(717)] = 17937, + [SMALL_STATE(718)] = 17989, + [SMALL_STATE(719)] = 18041, + [SMALL_STATE(720)] = 18093, + [SMALL_STATE(721)] = 18145, + [SMALL_STATE(722)] = 18197, + [SMALL_STATE(723)] = 18249, + [SMALL_STATE(724)] = 18301, + [SMALL_STATE(725)] = 18339, + [SMALL_STATE(726)] = 18370, + [SMALL_STATE(727)] = 18411, + [SMALL_STATE(728)] = 18460, + [SMALL_STATE(729)] = 18506, + [SMALL_STATE(730)] = 18554, + [SMALL_STATE(731)] = 18600, + [SMALL_STATE(732)] = 18646, + [SMALL_STATE(733)] = 18692, + [SMALL_STATE(734)] = 18740, + [SMALL_STATE(735)] = 18786, + [SMALL_STATE(736)] = 18832, + [SMALL_STATE(737)] = 18884, + [SMALL_STATE(738)] = 18932, + [SMALL_STATE(739)] = 18980, + [SMALL_STATE(740)] = 19010, + [SMALL_STATE(741)] = 19056, + [SMALL_STATE(742)] = 19104, + [SMALL_STATE(743)] = 19152, + [SMALL_STATE(744)] = 19182, + [SMALL_STATE(745)] = 19229, + [SMALL_STATE(746)] = 19262, + [SMALL_STATE(747)] = 19311, + [SMALL_STATE(748)] = 19340, + [SMALL_STATE(749)] = 19369, + [SMALL_STATE(750)] = 19398, + [SMALL_STATE(751)] = 19427, + [SMALL_STATE(752)] = 19455, + [SMALL_STATE(753)] = 19497, + [SMALL_STATE(754)] = 19539, + [SMALL_STATE(755)] = 19583, + [SMALL_STATE(756)] = 19625, + [SMALL_STATE(757)] = 19653, + [SMALL_STATE(758)] = 19687, + [SMALL_STATE(759)] = 19721, + [SMALL_STATE(760)] = 19749, + [SMALL_STATE(761)] = 19777, + [SMALL_STATE(762)] = 19819, + [SMALL_STATE(763)] = 19846, + [SMALL_STATE(764)] = 19873, + [SMALL_STATE(765)] = 19900, + [SMALL_STATE(766)] = 19927, + [SMALL_STATE(767)] = 19976, + [SMALL_STATE(768)] = 20010, + [SMALL_STATE(769)] = 20038, + [SMALL_STATE(770)] = 20064, + [SMALL_STATE(771)] = 20104, + [SMALL_STATE(772)] = 20130, + [SMALL_STATE(773)] = 20155, + [SMALL_STATE(774)] = 20188, + [SMALL_STATE(775)] = 20225, + [SMALL_STATE(776)] = 20262, + [SMALL_STATE(777)] = 20299, + [SMALL_STATE(778)] = 20346, + [SMALL_STATE(779)] = 20371, + [SMALL_STATE(780)] = 20408, + [SMALL_STATE(781)] = 20445, + [SMALL_STATE(782)] = 20482, + [SMALL_STATE(783)] = 20524, + [SMALL_STATE(784)] = 20566, + [SMALL_STATE(785)] = 20608, + [SMALL_STATE(786)] = 20650, + [SMALL_STATE(787)] = 20676, + [SMALL_STATE(788)] = 20718, + [SMALL_STATE(789)] = 20760, + [SMALL_STATE(790)] = 20802, + [SMALL_STATE(791)] = 20844, + [SMALL_STATE(792)] = 20886, + [SMALL_STATE(793)] = 20928, + [SMALL_STATE(794)] = 20970, + [SMALL_STATE(795)] = 21012, + [SMALL_STATE(796)] = 21053, + [SMALL_STATE(797)] = 21090, + [SMALL_STATE(798)] = 21131, + [SMALL_STATE(799)] = 21172, + [SMALL_STATE(800)] = 21213, + [SMALL_STATE(801)] = 21254, + [SMALL_STATE(802)] = 21295, + [SMALL_STATE(803)] = 21331, + [SMALL_STATE(804)] = 21367, + [SMALL_STATE(805)] = 21401, + [SMALL_STATE(806)] = 21437, + [SMALL_STATE(807)] = 21471, + [SMALL_STATE(808)] = 21509, + [SMALL_STATE(809)] = 21545, + [SMALL_STATE(810)] = 21583, + [SMALL_STATE(811)] = 21617, + [SMALL_STATE(812)] = 21653, + [SMALL_STATE(813)] = 21683, + [SMALL_STATE(814)] = 21717, + [SMALL_STATE(815)] = 21753, + [SMALL_STATE(816)] = 21789, + [SMALL_STATE(817)] = 21825, + [SMALL_STATE(818)] = 21861, + [SMALL_STATE(819)] = 21900, + [SMALL_STATE(820)] = 21931, + [SMALL_STATE(821)] = 21962, + [SMALL_STATE(822)] = 21995, + [SMALL_STATE(823)] = 22034, + [SMALL_STATE(824)] = 22067, + [SMALL_STATE(825)] = 22098, + [SMALL_STATE(826)] = 22137, + [SMALL_STATE(827)] = 22172, + [SMALL_STATE(828)] = 22203, + [SMALL_STATE(829)] = 22234, + [SMALL_STATE(830)] = 22267, + [SMALL_STATE(831)] = 22300, + [SMALL_STATE(832)] = 22327, + [SMALL_STATE(833)] = 22360, + [SMALL_STATE(834)] = 22393, + [SMALL_STATE(835)] = 22424, + [SMALL_STATE(836)] = 22457, + [SMALL_STATE(837)] = 22487, + [SMALL_STATE(838)] = 22519, + [SMALL_STATE(839)] = 22549, + [SMALL_STATE(840)] = 22583, + [SMALL_STATE(841)] = 22611, + [SMALL_STATE(842)] = 22641, + [SMALL_STATE(843)] = 22673, + [SMALL_STATE(844)] = 22707, + [SMALL_STATE(845)] = 22739, + [SMALL_STATE(846)] = 22771, + [SMALL_STATE(847)] = 22803, + [SMALL_STATE(848)] = 22832, + [SMALL_STATE(849)] = 22857, + [SMALL_STATE(850)] = 22886, + [SMALL_STATE(851)] = 22915, + [SMALL_STATE(852)] = 22940, + [SMALL_STATE(853)] = 22965, + [SMALL_STATE(854)] = 22986, + [SMALL_STATE(855)] = 23021, + [SMALL_STATE(856)] = 23056, + [SMALL_STATE(857)] = 23084, + [SMALL_STATE(858)] = 23110, + [SMALL_STATE(859)] = 23126, + [SMALL_STATE(860)] = 23155, + [SMALL_STATE(861)] = 23184, + [SMALL_STATE(862)] = 23209, + [SMALL_STATE(863)] = 23234, + [SMALL_STATE(864)] = 23263, + [SMALL_STATE(865)] = 23292, + [SMALL_STATE(866)] = 23306, + [SMALL_STATE(867)] = 23326, + [SMALL_STATE(868)] = 23346, + [SMALL_STATE(869)] = 23370, + [SMALL_STATE(870)] = 23384, + [SMALL_STATE(871)] = 23398, + [SMALL_STATE(872)] = 23420, + [SMALL_STATE(873)] = 23440, + [SMALL_STATE(874)] = 23454, + [SMALL_STATE(875)] = 23478, + [SMALL_STATE(876)] = 23500, + [SMALL_STATE(877)] = 23514, + [SMALL_STATE(878)] = 23535, + [SMALL_STATE(879)] = 23548, + [SMALL_STATE(880)] = 23569, + [SMALL_STATE(881)] = 23592, + [SMALL_STATE(882)] = 23609, + [SMALL_STATE(883)] = 23628, + [SMALL_STATE(884)] = 23645, + [SMALL_STATE(885)] = 23662, + [SMALL_STATE(886)] = 23683, + [SMALL_STATE(887)] = 23704, + [SMALL_STATE(888)] = 23725, + [SMALL_STATE(889)] = 23738, + [SMALL_STATE(890)] = 23761, + [SMALL_STATE(891)] = 23774, + [SMALL_STATE(892)] = 23797, + [SMALL_STATE(893)] = 23820, + [SMALL_STATE(894)] = 23837, + [SMALL_STATE(895)] = 23854, + [SMALL_STATE(896)] = 23877, + [SMALL_STATE(897)] = 23894, + [SMALL_STATE(898)] = 23907, + [SMALL_STATE(899)] = 23924, + [SMALL_STATE(900)] = 23941, + [SMALL_STATE(901)] = 23958, + [SMALL_STATE(902)] = 23971, + [SMALL_STATE(903)] = 23988, + [SMALL_STATE(904)] = 24009, + [SMALL_STATE(905)] = 24030, + [SMALL_STATE(906)] = 24043, + [SMALL_STATE(907)] = 24056, + [SMALL_STATE(908)] = 24079, + [SMALL_STATE(909)] = 24096, + [SMALL_STATE(910)] = 24109, + [SMALL_STATE(911)] = 24122, + [SMALL_STATE(912)] = 24135, + [SMALL_STATE(913)] = 24148, + [SMALL_STATE(914)] = 24161, + [SMALL_STATE(915)] = 24174, + [SMALL_STATE(916)] = 24191, + [SMALL_STATE(917)] = 24208, + [SMALL_STATE(918)] = 24229, + [SMALL_STATE(919)] = 24242, + [SMALL_STATE(920)] = 24259, + [SMALL_STATE(921)] = 24272, + [SMALL_STATE(922)] = 24289, + [SMALL_STATE(923)] = 24309, + [SMALL_STATE(924)] = 24325, + [SMALL_STATE(925)] = 24343, + [SMALL_STATE(926)] = 24363, + [SMALL_STATE(927)] = 24383, + [SMALL_STATE(928)] = 24399, + [SMALL_STATE(929)] = 24419, + [SMALL_STATE(930)] = 24439, + [SMALL_STATE(931)] = 24457, + [SMALL_STATE(932)] = 24477, + [SMALL_STATE(933)] = 24493, + [SMALL_STATE(934)] = 24513, + [SMALL_STATE(935)] = 24527, + [SMALL_STATE(936)] = 24547, + [SMALL_STATE(937)] = 24563, + [SMALL_STATE(938)] = 24583, + [SMALL_STATE(939)] = 24603, + [SMALL_STATE(940)] = 24623, + [SMALL_STATE(941)] = 24643, + [SMALL_STATE(942)] = 24663, + [SMALL_STATE(943)] = 24679, + [SMALL_STATE(944)] = 24695, + [SMALL_STATE(945)] = 24715, + [SMALL_STATE(946)] = 24727, + [SMALL_STATE(947)] = 24743, + [SMALL_STATE(948)] = 24763, + [SMALL_STATE(949)] = 24783, + [SMALL_STATE(950)] = 24803, + [SMALL_STATE(951)] = 24816, + [SMALL_STATE(952)] = 24831, + [SMALL_STATE(953)] = 24846, + [SMALL_STATE(954)] = 24861, + [SMALL_STATE(955)] = 24872, + [SMALL_STATE(956)] = 24889, + [SMALL_STATE(957)] = 24904, + [SMALL_STATE(958)] = 24919, + [SMALL_STATE(959)] = 24936, + [SMALL_STATE(960)] = 24947, + [SMALL_STATE(961)] = 24964, + [SMALL_STATE(962)] = 24979, + [SMALL_STATE(963)] = 24996, + [SMALL_STATE(964)] = 25013, + [SMALL_STATE(965)] = 25028, + [SMALL_STATE(966)] = 25045, + [SMALL_STATE(967)] = 25062, + [SMALL_STATE(968)] = 25077, + [SMALL_STATE(969)] = 25094, + [SMALL_STATE(970)] = 25111, + [SMALL_STATE(971)] = 25126, + [SMALL_STATE(972)] = 25143, + [SMALL_STATE(973)] = 25158, + [SMALL_STATE(974)] = 25173, + [SMALL_STATE(975)] = 25188, + [SMALL_STATE(976)] = 25205, + [SMALL_STATE(977)] = 25220, + [SMALL_STATE(978)] = 25237, + [SMALL_STATE(979)] = 25252, + [SMALL_STATE(980)] = 25269, + [SMALL_STATE(981)] = 25286, + [SMALL_STATE(982)] = 25303, + [SMALL_STATE(983)] = 25318, + [SMALL_STATE(984)] = 25335, + [SMALL_STATE(985)] = 25352, + [SMALL_STATE(986)] = 25369, + [SMALL_STATE(987)] = 25384, + [SMALL_STATE(988)] = 25401, + [SMALL_STATE(989)] = 25416, + [SMALL_STATE(990)] = 25433, + [SMALL_STATE(991)] = 25446, + [SMALL_STATE(992)] = 25463, + [SMALL_STATE(993)] = 25478, + [SMALL_STATE(994)] = 25495, + [SMALL_STATE(995)] = 25510, + [SMALL_STATE(996)] = 25525, + [SMALL_STATE(997)] = 25536, + [SMALL_STATE(998)] = 25553, + [SMALL_STATE(999)] = 25570, + [SMALL_STATE(1000)] = 25587, + [SMALL_STATE(1001)] = 25602, + [SMALL_STATE(1002)] = 25613, + [SMALL_STATE(1003)] = 25628, + [SMALL_STATE(1004)] = 25645, + [SMALL_STATE(1005)] = 25656, + [SMALL_STATE(1006)] = 25673, + [SMALL_STATE(1007)] = 25690, + [SMALL_STATE(1008)] = 25707, + [SMALL_STATE(1009)] = 25724, + [SMALL_STATE(1010)] = 25739, + [SMALL_STATE(1011)] = 25754, + [SMALL_STATE(1012)] = 25769, + [SMALL_STATE(1013)] = 25784, + [SMALL_STATE(1014)] = 25801, + [SMALL_STATE(1015)] = 25811, + [SMALL_STATE(1016)] = 25823, + [SMALL_STATE(1017)] = 25837, + [SMALL_STATE(1018)] = 25851, + [SMALL_STATE(1019)] = 25865, + [SMALL_STATE(1020)] = 25879, + [SMALL_STATE(1021)] = 25893, + [SMALL_STATE(1022)] = 25907, + [SMALL_STATE(1023)] = 25921, + [SMALL_STATE(1024)] = 25935, + [SMALL_STATE(1025)] = 25945, + [SMALL_STATE(1026)] = 25959, + [SMALL_STATE(1027)] = 25973, + [SMALL_STATE(1028)] = 25987, + [SMALL_STATE(1029)] = 25997, + [SMALL_STATE(1030)] = 26007, + [SMALL_STATE(1031)] = 26021, + [SMALL_STATE(1032)] = 26035, + [SMALL_STATE(1033)] = 26049, + [SMALL_STATE(1034)] = 26059, + [SMALL_STATE(1035)] = 26073, + [SMALL_STATE(1036)] = 26087, + [SMALL_STATE(1037)] = 26101, + [SMALL_STATE(1038)] = 26111, + [SMALL_STATE(1039)] = 26125, + [SMALL_STATE(1040)] = 26135, + [SMALL_STATE(1041)] = 26149, + [SMALL_STATE(1042)] = 26163, + [SMALL_STATE(1043)] = 26177, + [SMALL_STATE(1044)] = 26191, + [SMALL_STATE(1045)] = 26205, + [SMALL_STATE(1046)] = 26219, + [SMALL_STATE(1047)] = 26233, + [SMALL_STATE(1048)] = 26247, + [SMALL_STATE(1049)] = 26259, + [SMALL_STATE(1050)] = 26273, + [SMALL_STATE(1051)] = 26287, + [SMALL_STATE(1052)] = 26301, + [SMALL_STATE(1053)] = 26315, + [SMALL_STATE(1054)] = 26329, + [SMALL_STATE(1055)] = 26343, + [SMALL_STATE(1056)] = 26357, + [SMALL_STATE(1057)] = 26371, + [SMALL_STATE(1058)] = 26385, + [SMALL_STATE(1059)] = 26399, + [SMALL_STATE(1060)] = 26413, + [SMALL_STATE(1061)] = 26427, + [SMALL_STATE(1062)] = 26441, + [SMALL_STATE(1063)] = 26455, + [SMALL_STATE(1064)] = 26469, + [SMALL_STATE(1065)] = 26483, + [SMALL_STATE(1066)] = 26497, + [SMALL_STATE(1067)] = 26511, + [SMALL_STATE(1068)] = 26525, + [SMALL_STATE(1069)] = 26535, + [SMALL_STATE(1070)] = 26549, + [SMALL_STATE(1071)] = 26563, + [SMALL_STATE(1072)] = 26573, + [SMALL_STATE(1073)] = 26587, + [SMALL_STATE(1074)] = 26601, + [SMALL_STATE(1075)] = 26615, + [SMALL_STATE(1076)] = 26629, + [SMALL_STATE(1077)] = 26643, + [SMALL_STATE(1078)] = 26657, + [SMALL_STATE(1079)] = 26669, + [SMALL_STATE(1080)] = 26679, + [SMALL_STATE(1081)] = 26693, + [SMALL_STATE(1082)] = 26707, + [SMALL_STATE(1083)] = 26721, + [SMALL_STATE(1084)] = 26735, + [SMALL_STATE(1085)] = 26749, + [SMALL_STATE(1086)] = 26763, + [SMALL_STATE(1087)] = 26777, + [SMALL_STATE(1088)] = 26791, + [SMALL_STATE(1089)] = 26805, + [SMALL_STATE(1090)] = 26819, + [SMALL_STATE(1091)] = 26833, + [SMALL_STATE(1092)] = 26847, + [SMALL_STATE(1093)] = 26861, + [SMALL_STATE(1094)] = 26875, + [SMALL_STATE(1095)] = 26889, + [SMALL_STATE(1096)] = 26903, + [SMALL_STATE(1097)] = 26917, + [SMALL_STATE(1098)] = 26931, + [SMALL_STATE(1099)] = 26941, + [SMALL_STATE(1100)] = 26951, + [SMALL_STATE(1101)] = 26965, + [SMALL_STATE(1102)] = 26979, + [SMALL_STATE(1103)] = 26993, + [SMALL_STATE(1104)] = 27007, + [SMALL_STATE(1105)] = 27021, + [SMALL_STATE(1106)] = 27035, + [SMALL_STATE(1107)] = 27049, + [SMALL_STATE(1108)] = 27063, + [SMALL_STATE(1109)] = 27077, + [SMALL_STATE(1110)] = 27091, + [SMALL_STATE(1111)] = 27105, + [SMALL_STATE(1112)] = 27119, + [SMALL_STATE(1113)] = 27133, + [SMALL_STATE(1114)] = 27147, + [SMALL_STATE(1115)] = 27161, + [SMALL_STATE(1116)] = 27175, + [SMALL_STATE(1117)] = 27189, + [SMALL_STATE(1118)] = 27199, + [SMALL_STATE(1119)] = 27213, + [SMALL_STATE(1120)] = 27227, + [SMALL_STATE(1121)] = 27237, + [SMALL_STATE(1122)] = 27251, + [SMALL_STATE(1123)] = 27265, + [SMALL_STATE(1124)] = 27279, + [SMALL_STATE(1125)] = 27293, + [SMALL_STATE(1126)] = 27307, + [SMALL_STATE(1127)] = 27319, + [SMALL_STATE(1128)] = 27333, + [SMALL_STATE(1129)] = 27347, + [SMALL_STATE(1130)] = 27361, + [SMALL_STATE(1131)] = 27375, + [SMALL_STATE(1132)] = 27389, + [SMALL_STATE(1133)] = 27398, + [SMALL_STATE(1134)] = 27409, + [SMALL_STATE(1135)] = 27418, + [SMALL_STATE(1136)] = 27429, + [SMALL_STATE(1137)] = 27440, + [SMALL_STATE(1138)] = 27451, + [SMALL_STATE(1139)] = 27460, + [SMALL_STATE(1140)] = 27471, + [SMALL_STATE(1141)] = 27482, + [SMALL_STATE(1142)] = 27493, + [SMALL_STATE(1143)] = 27502, + [SMALL_STATE(1144)] = 27513, + [SMALL_STATE(1145)] = 27524, + [SMALL_STATE(1146)] = 27535, + [SMALL_STATE(1147)] = 27546, + [SMALL_STATE(1148)] = 27555, + [SMALL_STATE(1149)] = 27564, + [SMALL_STATE(1150)] = 27575, + [SMALL_STATE(1151)] = 27586, + [SMALL_STATE(1152)] = 27597, + [SMALL_STATE(1153)] = 27608, + [SMALL_STATE(1154)] = 27619, + [SMALL_STATE(1155)] = 27630, + [SMALL_STATE(1156)] = 27641, + [SMALL_STATE(1157)] = 27652, + [SMALL_STATE(1158)] = 27663, + [SMALL_STATE(1159)] = 27674, + [SMALL_STATE(1160)] = 27685, + [SMALL_STATE(1161)] = 27696, + [SMALL_STATE(1162)] = 27707, + [SMALL_STATE(1163)] = 27716, + [SMALL_STATE(1164)] = 27727, + [SMALL_STATE(1165)] = 27736, + [SMALL_STATE(1166)] = 27747, + [SMALL_STATE(1167)] = 27758, + [SMALL_STATE(1168)] = 27769, + [SMALL_STATE(1169)] = 27780, + [SMALL_STATE(1170)] = 27791, + [SMALL_STATE(1171)] = 27802, + [SMALL_STATE(1172)] = 27813, + [SMALL_STATE(1173)] = 27824, + [SMALL_STATE(1174)] = 27835, + [SMALL_STATE(1175)] = 27846, + [SMALL_STATE(1176)] = 27857, + [SMALL_STATE(1177)] = 27868, + [SMALL_STATE(1178)] = 27877, + [SMALL_STATE(1179)] = 27888, + [SMALL_STATE(1180)] = 27899, + [SMALL_STATE(1181)] = 27910, + [SMALL_STATE(1182)] = 27921, + [SMALL_STATE(1183)] = 27932, + [SMALL_STATE(1184)] = 27943, + [SMALL_STATE(1185)] = 27952, + [SMALL_STATE(1186)] = 27963, + [SMALL_STATE(1187)] = 27972, + [SMALL_STATE(1188)] = 27983, + [SMALL_STATE(1189)] = 27994, + [SMALL_STATE(1190)] = 28005, + [SMALL_STATE(1191)] = 28014, + [SMALL_STATE(1192)] = 28025, + [SMALL_STATE(1193)] = 28034, + [SMALL_STATE(1194)] = 28045, + [SMALL_STATE(1195)] = 28054, + [SMALL_STATE(1196)] = 28063, + [SMALL_STATE(1197)] = 28074, + [SMALL_STATE(1198)] = 28085, + [SMALL_STATE(1199)] = 28094, + [SMALL_STATE(1200)] = 28105, + [SMALL_STATE(1201)] = 28116, + [SMALL_STATE(1202)] = 28127, + [SMALL_STATE(1203)] = 28138, + [SMALL_STATE(1204)] = 28149, + [SMALL_STATE(1205)] = 28158, + [SMALL_STATE(1206)] = 28169, + [SMALL_STATE(1207)] = 28178, + [SMALL_STATE(1208)] = 28189, + [SMALL_STATE(1209)] = 28200, + [SMALL_STATE(1210)] = 28211, + [SMALL_STATE(1211)] = 28222, + [SMALL_STATE(1212)] = 28233, + [SMALL_STATE(1213)] = 28244, + [SMALL_STATE(1214)] = 28255, + [SMALL_STATE(1215)] = 28266, + [SMALL_STATE(1216)] = 28277, + [SMALL_STATE(1217)] = 28286, + [SMALL_STATE(1218)] = 28297, + [SMALL_STATE(1219)] = 28308, + [SMALL_STATE(1220)] = 28319, + [SMALL_STATE(1221)] = 28328, + [SMALL_STATE(1222)] = 28337, + [SMALL_STATE(1223)] = 28348, + [SMALL_STATE(1224)] = 28359, + [SMALL_STATE(1225)] = 28368, + [SMALL_STATE(1226)] = 28379, + [SMALL_STATE(1227)] = 28390, + [SMALL_STATE(1228)] = 28401, + [SMALL_STATE(1229)] = 28412, + [SMALL_STATE(1230)] = 28423, + [SMALL_STATE(1231)] = 28432, + [SMALL_STATE(1232)] = 28443, + [SMALL_STATE(1233)] = 28454, + [SMALL_STATE(1234)] = 28465, + [SMALL_STATE(1235)] = 28476, + [SMALL_STATE(1236)] = 28485, + [SMALL_STATE(1237)] = 28496, + [SMALL_STATE(1238)] = 28505, + [SMALL_STATE(1239)] = 28516, + [SMALL_STATE(1240)] = 28527, + [SMALL_STATE(1241)] = 28538, + [SMALL_STATE(1242)] = 28549, + [SMALL_STATE(1243)] = 28558, + [SMALL_STATE(1244)] = 28567, + [SMALL_STATE(1245)] = 28576, + [SMALL_STATE(1246)] = 28587, + [SMALL_STATE(1247)] = 28596, + [SMALL_STATE(1248)] = 28607, + [SMALL_STATE(1249)] = 28616, + [SMALL_STATE(1250)] = 28625, + [SMALL_STATE(1251)] = 28636, + [SMALL_STATE(1252)] = 28645, + [SMALL_STATE(1253)] = 28654, + [SMALL_STATE(1254)] = 28665, + [SMALL_STATE(1255)] = 28676, + [SMALL_STATE(1256)] = 28685, + [SMALL_STATE(1257)] = 28694, + [SMALL_STATE(1258)] = 28705, + [SMALL_STATE(1259)] = 28716, + [SMALL_STATE(1260)] = 28725, + [SMALL_STATE(1261)] = 28734, + [SMALL_STATE(1262)] = 28745, + [SMALL_STATE(1263)] = 28754, + [SMALL_STATE(1264)] = 28765, + [SMALL_STATE(1265)] = 28776, + [SMALL_STATE(1266)] = 28787, + [SMALL_STATE(1267)] = 28798, + [SMALL_STATE(1268)] = 28809, + [SMALL_STATE(1269)] = 28818, + [SMALL_STATE(1270)] = 28829, + [SMALL_STATE(1271)] = 28840, + [SMALL_STATE(1272)] = 28848, + [SMALL_STATE(1273)] = 28856, + [SMALL_STATE(1274)] = 28864, + [SMALL_STATE(1275)] = 28872, + [SMALL_STATE(1276)] = 28880, + [SMALL_STATE(1277)] = 28888, + [SMALL_STATE(1278)] = 28896, + [SMALL_STATE(1279)] = 28904, + [SMALL_STATE(1280)] = 28912, + [SMALL_STATE(1281)] = 28920, + [SMALL_STATE(1282)] = 28928, + [SMALL_STATE(1283)] = 28936, + [SMALL_STATE(1284)] = 28944, + [SMALL_STATE(1285)] = 28952, + [SMALL_STATE(1286)] = 28960, + [SMALL_STATE(1287)] = 28968, + [SMALL_STATE(1288)] = 28976, + [SMALL_STATE(1289)] = 28984, + [SMALL_STATE(1290)] = 28992, + [SMALL_STATE(1291)] = 29000, + [SMALL_STATE(1292)] = 29008, + [SMALL_STATE(1293)] = 29016, + [SMALL_STATE(1294)] = 29024, + [SMALL_STATE(1295)] = 29032, + [SMALL_STATE(1296)] = 29040, + [SMALL_STATE(1297)] = 29048, + [SMALL_STATE(1298)] = 29056, + [SMALL_STATE(1299)] = 29064, + [SMALL_STATE(1300)] = 29072, + [SMALL_STATE(1301)] = 29080, + [SMALL_STATE(1302)] = 29088, + [SMALL_STATE(1303)] = 29096, + [SMALL_STATE(1304)] = 29104, + [SMALL_STATE(1305)] = 29112, + [SMALL_STATE(1306)] = 29120, + [SMALL_STATE(1307)] = 29128, + [SMALL_STATE(1308)] = 29136, + [SMALL_STATE(1309)] = 29144, + [SMALL_STATE(1310)] = 29152, + [SMALL_STATE(1311)] = 29160, + [SMALL_STATE(1312)] = 29168, + [SMALL_STATE(1313)] = 29176, + [SMALL_STATE(1314)] = 29184, + [SMALL_STATE(1315)] = 29192, + [SMALL_STATE(1316)] = 29200, + [SMALL_STATE(1317)] = 29208, + [SMALL_STATE(1318)] = 29216, + [SMALL_STATE(1319)] = 29224, + [SMALL_STATE(1320)] = 29232, + [SMALL_STATE(1321)] = 29240, + [SMALL_STATE(1322)] = 29248, + [SMALL_STATE(1323)] = 29256, + [SMALL_STATE(1324)] = 29264, + [SMALL_STATE(1325)] = 29272, + [SMALL_STATE(1326)] = 29280, + [SMALL_STATE(1327)] = 29288, + [SMALL_STATE(1328)] = 29296, + [SMALL_STATE(1329)] = 29304, + [SMALL_STATE(1330)] = 29312, + [SMALL_STATE(1331)] = 29320, + [SMALL_STATE(1332)] = 29328, + [SMALL_STATE(1333)] = 29336, + [SMALL_STATE(1334)] = 29344, + [SMALL_STATE(1335)] = 29352, + [SMALL_STATE(1336)] = 29360, + [SMALL_STATE(1337)] = 29368, + [SMALL_STATE(1338)] = 29376, + [SMALL_STATE(1339)] = 29384, + [SMALL_STATE(1340)] = 29392, + [SMALL_STATE(1341)] = 29400, + [SMALL_STATE(1342)] = 29408, + [SMALL_STATE(1343)] = 29416, + [SMALL_STATE(1344)] = 29424, + [SMALL_STATE(1345)] = 29432, + [SMALL_STATE(1346)] = 29440, + [SMALL_STATE(1347)] = 29448, + [SMALL_STATE(1348)] = 29456, + [SMALL_STATE(1349)] = 29464, + [SMALL_STATE(1350)] = 29472, + [SMALL_STATE(1351)] = 29480, + [SMALL_STATE(1352)] = 29488, + [SMALL_STATE(1353)] = 29496, + [SMALL_STATE(1354)] = 29504, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -74829,1607 +72024,1590 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(117), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(373), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(239), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(106), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1216), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1362), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(454), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(888), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(568), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1228), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1, 0, 0), - [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1, 0, 0), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(421), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(542), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(542), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(956), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(887), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(117), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(238), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(509), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(238), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(211), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(788), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1359), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1185), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(9), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(373), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(239), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(17), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1231), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1229), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1263), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(167), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(106), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(577), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(208), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1045), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1369), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(911), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(454), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(423), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(136), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(903), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(888), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1323), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(401), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(509), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(462), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1302), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1331), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(730), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(731), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(753), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(568), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1228), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2, 0, 0), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2, 0, 0), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 1), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 1), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), - [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 21), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 21), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 23), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 23), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, 0, 24), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, 0, 24), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, 0, 24), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, 0, 24), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 149), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 149), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 0), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 0), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2, 0, 0), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2, 0, 0), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 127), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 127), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 0), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 0), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 133), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 133), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 134), - [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 134), - [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 136), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 136), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 137), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 137), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 138), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 138), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 139), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 139), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 140), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 140), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 141), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 141), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 142), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 142), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 143), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 143), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 138), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 138), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 144), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 144), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 145), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 145), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 147), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 147), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 151), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 151), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 154), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 154), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 89), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 89), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 155), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 155), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 91), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 91), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 156), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 156), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 157), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 157), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 92), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 92), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 0), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 161), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 161), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 162), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 162), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 163), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 163), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 164), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 164), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 7, 0, 165), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 7, 0, 165), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, 0, 166), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, 0, 166), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 168), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 168), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 169), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 169), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 170), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 170), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 171), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 171), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 93), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 93), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 172), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 172), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, 0, 173), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, 0, 173), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 174), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 174), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 175), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 175), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6, 0, 0), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6, 0, 0), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 20), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 20), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 179), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 179), - [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 181), - [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 181), - [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 182), - [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 182), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 183), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 183), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 184), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 184), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 94), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 94), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 185), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 185), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, 0, 186), - [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, 0, 186), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 187), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 187), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 199), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 199), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 200), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 200), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 201), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 201), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 206), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 206), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3, 0, 0), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 21), - [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 21), - [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2, 0, 0), - [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5, 0, 0), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5, 0, 0), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 95), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 95), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 57), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 57), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, 0, 24), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, 0, 24), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 96), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 96), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2, 0, 0), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 64), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 64), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 0), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 0), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 0), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3, 0, 0), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3, 0, 0), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, 0, 22), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, 0, 22), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 59), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 59), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3, 0, 0), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3, 0, 0), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 0), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 20), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 20), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 20), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 20), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, 0, 20), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, 0, 20), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 20), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 20), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 0), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, 0, 40), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, 0, 40), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 100), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 100), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 101), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 101), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 57), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 57), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 58), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 58), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 59), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 59), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 60), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 60), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 23), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 23), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3, 0, 0), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3, 0, 0), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 91), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 91), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 102), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 102), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 103), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 103), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 108), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 108), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 109), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 109), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 110), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 110), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 110), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 110), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 112), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 112), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 108), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 108), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 111), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 111), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 113), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 113), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 114), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 114), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 62), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 62), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 120), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 120), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 121), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 121), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 122), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 122), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 123), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 123), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 62), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 62), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, 0, 62), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, 0, 62), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 62), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 62), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, 0, 71), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, 0, 71), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 126), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 126), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, 0, 0), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, 0, 0), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, 0, 63), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, 0, 63), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 62), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 62), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 60), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 60), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 25), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 25), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 36), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, 0, 36), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 12), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, 0, 12), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 35), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, 0, 35), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 13), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, 0, 13), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, 0, 205), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, 0, 205), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, 0, 198), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, 0, 198), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, 0, 167), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, 0, 167), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, 0, 180), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, 0, 180), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2, 0, 0), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1, 0, 0), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [1314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 2), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(654), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), - [1337] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(961), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 2), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1313), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1348] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(961), - [1352] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(1313), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 2), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(143), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), - [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(426), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(730), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, 0, 27), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, 0, 27), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, 0, 104), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, 0, 104), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(1353), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1, 0, 0), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1, 0, 0), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, 0, 70), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, 0, 70), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 2), SHIFT(668), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 17), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 17), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 19), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 19), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 54), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 54), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 56), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 56), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 10, 0), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 10, 0), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 10, 2), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 10, 2), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2, 0, 0), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2, 0, 0), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(668), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, 0, 77), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, 0, 77), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(206), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(909), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 30), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 30), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 42), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 42), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 61), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 61), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, 0, 66), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, 0, 66), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, 0, 8), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, 0, 8), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, 0, 32), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, 0, 32), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 68), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 68), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, 0, 5), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, 0, 5), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 85), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 85), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 18), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 18), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 55), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 55), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 115), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 115), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 51), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 51), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 116), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 116), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 80), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 80), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 16), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 16), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 53), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 53), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 52), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 52), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 79), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 79), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 86), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 86), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(911), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3, 0, 0), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1, 0, 0), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1, 0, 0), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4, 0, 0), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4, 0, 0), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 78), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 78), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2, 0, 0), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2, 0, 0), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 51), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 51), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 52), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 52), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 53), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 53), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 81), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 81), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 82), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 82), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 55), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 55), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 83), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 83), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 84), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 84), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2, 0, 0), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2, 0, 0), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 2, 0, 87), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 2, 0, 87), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, 0, 88), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, 0, 88), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 3, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 3, 0, 0), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2, 0, 0), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, 0, 105), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, 0, 105), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 2, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 2, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3, 0, 0), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3, 0, 0), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 79), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 79), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 80), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 80), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 85), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 85), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 86), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 86), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 3, 0, 20), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 3, 0, 20), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, 0, 117), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, 0, 117), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2, 0, 0), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2, 0, 0), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, 0, 119), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, 0, 119), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 40), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 40), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, 0, 135), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, 0, 135), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, 0, 65), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, 0, 65), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 115), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 115), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 116), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 116), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, 0, 146), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, 0, 146), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 71), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 71), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3, 0, 0), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 26), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 26), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, 0, 160), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, 0, 160), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expression, 3, 0, 33), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expression, 3, 0, 33), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 34), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 34), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3, 17, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3, 17, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 44), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 44), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 16), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 16), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 47), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 47), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 48), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 48), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 18), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 18), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 49), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 49), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 50), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 50), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, 0, 6), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, 0, 6), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1, 0, 0), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, 0, 3), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, 0, 3), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4, 0, 0), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 71), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 71), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 40), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 40), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(1363), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 28), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 28), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 0), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, 0, 178), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, 0, 178), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, 0, 31), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, 0, 31), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 3, 0, 0), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 3, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 194), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 194), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 196), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 196), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 197), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 197), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 202), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 202), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 203), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 203), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 204), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 204), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, 0, 207), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, 0, 207), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 67), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 67), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, 0, 106), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, 0, 106), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 2, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 2, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 4, 0, 0), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 4, 0, 0), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, 0, 0), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 2, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 69), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 69), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 29), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 29), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 28), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_record_pattern_body, 2, 0, 0), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_record_pattern_body, 2, 0, 0), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 107), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2, 0, 0), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1, 0, 0), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 76), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 0), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, 0, 148), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 152), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 97), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, 0, 124), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2, 0, 0), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(957), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, 0, 7), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(917), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(918), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(898), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(957), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, 0, 130), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, 0, 130), SHIFT_REPEAT(899), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, 0, 39), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2, 0, 0), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(979), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, 0, 99), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, 0, 0), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, 0, 7), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 5), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, 0, 158), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3, 0, 0), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(909), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, 0, 176), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, 0, 176), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, 0, 177), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), - [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(960), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(960), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, 0, 129), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, 0, 131), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, 0, 131), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, 0, 0), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, 0, 45), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, 0, 189), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, 0, 189), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, 0, 192), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), SHIFT_REPEAT(134), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1218), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1, 0, 0), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_fragment, 1, 0, 0), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2, 0, 0), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(763), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1, 0, 0), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, 0, 38), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 26), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 6), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 10), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, 0, 72), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4, 0, 0), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1, 0, 0), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3, 0, 0), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 2), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3, 0, 0), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3, 0, 0), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, 0, 11), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2, 0, 0), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2, 0, 0), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5, 0, 0), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2, 0, 0), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2, 0, 0), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, 0, 37), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 15), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, 0, 41), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, 0, 0), - [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(925), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 46), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 46), SHIFT_REPEAT(759), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 153), - [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 153), SHIFT_REPEAT(220), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_receiver_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_receiver_parameter_repeat1, 2, 0, 0), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(481), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 87), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pattern, 2, 0, 0), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3, 0, 0), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2, 0, 0), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, 0, 73), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 188), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2, 0, 0), - [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 190), SHIFT_REPEAT(904), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 190), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 191), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_body_repeat1, 2, 0, 0), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_body_repeat1, 2, 0, 0), SHIFT_REPEAT(651), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 193), SHIFT_REPEAT(901), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 193), - [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 75), SHIFT_REPEAT(881), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 75), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1269), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, 0, 9), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 132), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 20), - [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 98), SHIFT_REPEAT(217), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 98), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, 0, 159), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2, 0, 0), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, 0, 72), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, 0, 11), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, 0, 37), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4, 0, 0), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3, 0, 0), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2, 0, 0), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 74), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, 0, 39), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 15), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, 0, 128), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, 0, 118), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 4, 0, 0), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2, 0, 0), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 45), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3, 0, 0), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_component, 1, 0, 0), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 2), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_component, 2, 0, 0), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3, 0, 0), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2, 0, 0), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, 0, 14), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, 0, 43), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3307] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3, 0, 0), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, 0, 195), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5, 0, 0), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2, 0, 0), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1, 0, 0), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3, 0, 0), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, 0, 150), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4, 0, 0), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, 0, 125), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(416), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(879), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1241), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1207), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1232), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(288), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(371), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1212), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1217), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1, 0, 0), + [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1, 0, 0), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(418), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(543), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(543), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(879), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(848), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(112), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(359), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(469), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(359), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(380), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(737), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1301), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1241), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(8), + [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(222), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(343), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(59), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1200), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1214), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(288), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(373), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(553), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(371), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(979), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1201), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1346), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1211), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1341), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1212), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1217), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1106), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1296), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(469), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1316), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1320), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1284), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(762), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(765), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(771), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(510), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat2, 2, 0, 0), SHIFT_REPEAT(1156), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2, 0, 0), + [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2, 0, 0), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), + [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 20), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 20), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 22), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 22), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, 0, 23), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, 0, 23), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, 0, 23), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, 0, 23), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1306), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 148), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 148), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 58), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 58), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 141), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 141), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 142), + [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 142), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 137), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 137), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 143), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 143), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 144), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 144), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 110), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 110), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 146), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 146), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3, 0, 0), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 150), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 150), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 20), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 20), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 153), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 153), + [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 119), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 119), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 154), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 154), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 120), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 120), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 19), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 19), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, 0, 0), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, 0, 0), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 0), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 0), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 155), + [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 155), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 19), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 19), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 156), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 156), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, 0, 19), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, 0, 19), + [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 121), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 121), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 122), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 122), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 0), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 160), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 160), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 161), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 161), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 162), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 162), + [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 163), + [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 163), + [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 7, 0, 164), + [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 7, 0, 164), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, 0, 165), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, 0, 165), + [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 167), + [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 167), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 168), + [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 168), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 19), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 19), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 169), + [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 169), + [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 0), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 0), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 170), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 170), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, 0, 39), + [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, 0, 39), + [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 171), + [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 171), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 112), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 112), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, 0, 172), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, 0, 172), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 173), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 173), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 174), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 174), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 56), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 56), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 0), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 0), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6, 0, 0), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6, 0, 0), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 125), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 125), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 178), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 178), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 180), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 180), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 181), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 181), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 182), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 182), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 57), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 57), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 183), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 183), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 111), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 111), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 184), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 184), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 59), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 59), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, 0, 185), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, 0, 185), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 186), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 186), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 198), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 198), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 199), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 199), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 200), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 200), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 205), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 205), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 0), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 0), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3, 0, 0), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3, 0, 0), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 126), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 126), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 22), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 22), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, 0, 21), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, 0, 21), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 107), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 107), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 113), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 113), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 0), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 0), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 61), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 61), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2, 0, 0), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2, 0, 0), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 0), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 0), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 58), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 58), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, 0, 62), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, 0, 62), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2, 0, 0), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2, 0, 0), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2, 0, 0), + [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2, 0, 0), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 56), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 56), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 59), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 59), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 63), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 63), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 61), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 61), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 61), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 61), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, 0, 61), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, 0, 61), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 61), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 61), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, 0, 70), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, 0, 70), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, 0, 0), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, 0, 0), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 88), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 88), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 89), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 89), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 91), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 91), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, 0, 132), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, 0, 132), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 92), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 92), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 93), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 93), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 133), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 133), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 19), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 19), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5, 0, 0), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5, 0, 0), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 94), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 94), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, 0, 23), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, 0, 23), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 95), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 95), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 135), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 135), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 136), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 136), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 137), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 137), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3, 0, 0), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3, 0, 0), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 0), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 0), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 99), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 99), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, 0, 100), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, 0, 100), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 90), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 90), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 101), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 101), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 102), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 102), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 108), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 108), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 109), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 109), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 110), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 110), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 109), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 109), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 138), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 138), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 139), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 139), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 140), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 140), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 11), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, 0, 11), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, 0, 12), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, 0, 12), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 34), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, 0, 34), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, 0, 35), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, 0, 35), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, 0, 166), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, 0, 166), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, 0, 179), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, 0, 179), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, 0, 197), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, 0, 197), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, 0, 204), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, 0, 204), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1, 0, 0), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 1), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(653), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 1), + [1355] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 1), SHIFT(893), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 1), + [1361] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 1), SHIFT(1344), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 1), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1370] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__unannotated_type, 1, 0, 1), SHIFT(893), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1344), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), + [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), + [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(211), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, 0, 26), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, 0, 26), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, 0, 103), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, 0, 103), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, 0, 69), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, 0, 69), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 16), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 16), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 0, 18), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 0, 18), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 55), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 55), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 53), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 53), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 60), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 60), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(364), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(1202), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), + [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 1), SHIFT(633), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, 0, 4), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, 0, 4), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 10, 1), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 10, 1), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 85), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 85), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 79), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 79), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 15), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 15), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 78), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 78), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 17), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, 0, 17), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 114), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 114), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 115), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 115), + [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(633), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 84), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 84), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 50), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 50), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 51), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 51), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 52), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 52), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 10, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 10, 0), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 54), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 54), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4, 0, 0), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1, 0, 0), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 29), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 29), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, 0, 65), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, 0, 65), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, 0, 76), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, 0, 76), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3, 0, 0), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(480), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(480), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 81), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 81), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 83), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 83), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, 0, 5), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, 0, 5), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4, 0, 0), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2, 0, 0), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2, 0, 0), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 2, 0, 86), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 2, 0, 86), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1, 0, 0), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 2, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 2, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 114), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 114), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 115), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 7, 0, 115), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, 0, 7), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, 0, 7), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, 0, 159), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, 0, 159), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, 0, 145), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, 0, 145), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 70), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 70), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, 0, 64), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, 0, 64), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5, 0, 0), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4, 0, 0), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4, 0, 0), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3, 0, 0), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3, 0, 0), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 54), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 54), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4, 0, 0), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4, 0, 0), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 25), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 25), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3, 0, 0), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 82), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 82), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 77), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 77), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expression, 3, 0, 32), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expression, 3, 0, 32), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 33), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 33), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, 0, 104), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, 0, 104), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, 0, 134), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, 0, 134), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3, 17, 0), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3, 17, 0), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 43), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 43), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, 0, 2), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, 0, 2), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3, 0, 0), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 78), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 78), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 79), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 79), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 84), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 84), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 85), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 6, 0, 85), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 50), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 50), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 51), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 51), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 3, 0, 19), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 3, 0, 19), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, 0, 116), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, 0, 116), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2, 0, 0), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, 0, 118), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, 0, 118), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 39), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 39), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 15), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 15), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 3, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 3, 0, 0), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 46), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 46), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 47), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 47), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 17), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, 0, 17), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 48), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 48), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, 0, 49), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, 0, 49), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 52), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, 0, 52), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, 0, 80), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, 0, 80), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, 0, 87), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, 0, 87), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 70), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 70), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 39), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 39), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, 0, 31), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, 0, 31), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 67), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 67), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, 0, 30), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, 0, 30), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 27), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 27), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 3, 0, 0), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 3, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, 0, 177), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, 0, 177), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 201), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 201), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 3), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 3), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, 0, 105), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, 0, 105), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 2, 0, 0), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 2, 0, 0), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_body, 4, 0, 0), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern_body, 4, 0, 0), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 0), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 0), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, 0, 206), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, 0, 206), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 203), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 203), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 66), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 66), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, 0, 0), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 2, 0, 0), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 202), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, 0, 202), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, 0, 68), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, 0, 68), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 193), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 193), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 195), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 195), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 196), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, 0, 196), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 28), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 28), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_record_pattern_body, 2, 0, 0), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_record_pattern_body, 2, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 106), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 75), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 151), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 96), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, 0, 123), + [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2, 0, 0), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, 0, 147), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1, 0, 0), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), + [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1240), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, 0, 6), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1, 0, 0), + [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(899), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, 0, 38), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), + [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(905), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unannotated_type, 1, 0, 0), SHIFT(899), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, 0, 6), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), + [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 4), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), SHIFT_REPEAT(141), + [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1248), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, 0, 0), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), + [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(887), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(887), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, 0, 191), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, 0, 188), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, 0, 157), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, 0, 128), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_fragment, 1, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, 0, 130), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, 0, 130), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, 0, 44), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, 0, 175), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, 0, 175), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, 0, 176), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1, 0, 0), + [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, 0, 188), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 25), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, 0, 129), + [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, 0, 129), SHIFT_REPEAT(1098), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 5), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(333), + [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, 0, 0), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, 0, 37), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1, 0, 0), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 9), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 14), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2, 0, 0), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5, 0, 0), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, 0, 36), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2, 0, 0), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3, 0, 0), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2, 0, 0), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, 0, 71), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2, 0, 0), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3, 0, 0), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 1), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, 0, 10), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2, 0, 0), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, 0, 0), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1, 0, 0), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2, 0, 0), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4, 0, 0), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 86), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 190), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 192), SHIFT_REPEAT(1187), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, 0, 192), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), + [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 45), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 45), SHIFT_REPEAT(723), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 131), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 19), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, 0, 72), + [2894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 74), SHIFT_REPEAT(970), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 74), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, 0, 40), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(665), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_receiver_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_receiver_parameter_repeat1, 2, 0, 0), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2, 0, 0), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2, 0, 0), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pattern, 2, 0, 0), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, 0, 0), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1326), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 152), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 152), SHIFT_REPEAT(375), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 97), SHIFT_REPEAT(336), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 97), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1, 0, 0), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, 0, 98), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2, 0, 0), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3, 0, 0), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, 0, 8), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, 0, 158), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 187), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 189), SHIFT_REPEAT(1172), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, 0, 189), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_body_repeat1, 2, 0, 0), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_body_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, 0, 117), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 1), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, 0, 10), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 14), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3, 0, 0), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3, 0, 0), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, 0, 38), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 4, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, 0, 36), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, 0, 71), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, 0, 73), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, 0, 127), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4, 0, 0), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, 0, 13), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4, 0, 0), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1, 0, 0), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, 0, 42), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2, 0, 0), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_component, 2, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, 0, 44), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3, 0, 0), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_component, 1, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, 0, 194), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4, 0, 0), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, 0, 149), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4, 0, 0), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3, 0, 0), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5, 0, 0), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3341] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, 0, 124), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1, 0, 0), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3, 0, 0), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), }; #ifdef __cplusplus @@ -76472,6 +73650,9 @@ TS_PUBLIC const TSLanguage *tree_sitter_java(void) { .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, .primary_state_ids = ts_primary_state_ids, + .name = "java", + .reserved_words = &ts_reserved_words[0][0], + .max_reserved_word_set_size = 48, }; return &language; } diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b23..a17a574 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599..30fa7f1 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -79,6 +79,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -115,7 +121,7 @@ struct TSLanguage { const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,6 +135,9 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; }; static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { diff --git a/test/corpus/errors.txt b/test/corpus/errors.txt new file mode 100644 index 0000000..79f91eb --- /dev/null +++ b/test/corpus/errors.txt @@ -0,0 +1,36 @@ +================================================= +Error detected at globally reserved keyword +================================================= + +class Test { + void example() { + object. // incomplete field access + if (condition) { // keyword should be recognized as error here + doSomething(); + } + } +} + +--- + +(program + (class_declaration + (identifier) + (class_body + (method_declaration + (void_type) + (identifier) + (formal_parameters) + (block + (ERROR + (identifier)) + (line_comment) + (if_statement + (parenthesized_expression + (identifier)) + (block + (line_comment) + (expression_statement + (method_invocation + (identifier) + (argument_list))))))))))